From: Christian Heimes Date: Wed, 31 Jul 2013 21:47:56 +0000 (+0200) Subject: Silence warning about set but unused variable inside compile_atom() in non-debug... X-Git-Tag: v3.4.0a1~34^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e4d3725249410e174f8b59e85323d83a24dfc86;p=thirdparty%2FPython%2Fcpython.git Silence warning about set but unused variable inside compile_atom() in non-debug builds --- diff --git a/Parser/pgen.c b/Parser/pgen.c index beaf53be0bdb..b2f84709fc42 100644 --- a/Parser/pgen.c +++ b/Parser/pgen.c @@ -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) {