Silence warning about set but unused variable inside compile_atom() in non-debug builds

This commit is contained in:
Christian Heimes 2013-07-31 23:48:04 +02:00
commit 1289565f4b
1 changed files with 1 additions and 0 deletions

View File

@ -283,6 +283,7 @@ compile_atom(labellist *ll, nfa *nf, node *n, int *pa, int *pb)
REQ(n, ATOM);
i = n->n_nchildren;
(void)i; /* Don't warn about set but unused */
REQN(i, 1);
n = n->n_child;
if (n->n_type == LPAR) {