]> git.sur5r.net Git - i3/i3/commitdiff
Remove obsolete macro FOR_TABLE 3255/head
authorOrestis Floros <orestisf1993@gmail.com>
Fri, 20 Apr 2018 03:13:40 +0000 (06:13 +0300)
committerOrestis Floros <orestisf1993@gmail.com>
Fri, 20 Apr 2018 03:13:40 +0000 (06:13 +0300)
Was added in 38c8541807d50e18bf5ea61995ec6b3ab3e8a068, should have been
removed in c145f7e5297ef06aaf84689762a736d5bc8cbb83.

include/util.h

index 3547d8d7b50df6533fc566aec682efe0e63bc1a3..d58e21b7d675fd6946988a8c85fae5904c45d956 100644 (file)
@@ -25,9 +25,6 @@
 #define STARTS_WITH(string, needle) (strncasecmp((string), (needle), strlen((needle))) == 0)
 #define CIRCLEQ_NEXT_OR_NULL(head, elm, field) (CIRCLEQ_NEXT(elm, field) != CIRCLEQ_END(head) ? CIRCLEQ_NEXT(elm, field) : NULL)
 #define CIRCLEQ_PREV_OR_NULL(head, elm, field) (CIRCLEQ_PREV(elm, field) != CIRCLEQ_END(head) ? CIRCLEQ_PREV(elm, field) : NULL)
-#define FOR_TABLE(workspace)                             \
-    for (int cols = 0; cols < (workspace)->cols; cols++) \
-        for (int rows = 0; rows < (workspace)->rows; rows++)
 
 #define NODES_FOREACH(head)                                                    \
     for (Con *child = (Con *)-1; (child == (Con *)-1) && ((child = 0), true);) \