Fix non-matching undefs

This commit is contained in:
Bastien Dejean 2017-01-31 15:53:47 +01:00
parent cdb70b8f34
commit 4ad7630fde
2 changed files with 2 additions and 2 deletions

View file

@ -904,7 +904,7 @@ bool node_matches(coordinates_t *loc, coordinates_t *ref, node_select_t sel)
NFLAG(sticky)
NFLAG(private)
NFLAG(locked)
#undef WFLAG
#undef NFLAG
if (loc->node->client == NULL &&
(sel.same_class != OPTION_NONE ||

View file

@ -1466,7 +1466,7 @@ bool find_closest_node(coordinates_t *ref, coordinates_t *dst, cycle_dir_t dir,
f = (dir == CYCLE_PREV ? prev_leaf(f, d->root) : next_leaf(f, d->root));
HANDLE_BOUNDARIES(f);
}
#undef HANDLE_EXTREMUM
#undef HANDLE_BOUNDARIES
return false;
}