]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Silence warning about set but unused variable inside compile_atom() in non-debug...
authorChristian Heimes <christian@cheimes.de>
Wed, 31 Jul 2013 21:47:56 +0000 (23:47 +0200)
committerChristian Heimes <christian@cheimes.de>
Wed, 31 Jul 2013 21:47:56 +0000 (23:47 +0200)
Parser/pgen.c

index beaf53be0bdb345af413f808e3daa036374a4b58..b2f84709fc42c6cf7fa0800d459b1f0393ba9632 100644 (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) {