Remove obsolete macro FOR_TABLE

Was added in 38c8541807, should have been
removed in c145f7e529.
next
Orestis Floros 2018-04-20 06:13:40 +03:00
parent ff543b8b56
commit 0254228861
No known key found for this signature in database
GPG Key ID: E9AD9F32E401E38F
1 changed files with 0 additions and 3 deletions

View 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);) \