summaryrefslogtreecommitdiffstats
path: root/Parser/pgen.c
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-07-31 21:47:56 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-07-31 21:47:56 (GMT)
commit5e4d3725249410e174f8b59e85323d83a24dfc86 (patch)
treef15440972088e24ed0ec7f1b7f631bd7df188606 /Parser/pgen.c
parent4ebc9295d15c52295ce903d99ccf24142c22b29d (diff)
downloadcpython-5e4d3725249410e174f8b59e85323d83a24dfc86.zip
cpython-5e4d3725249410e174f8b59e85323d83a24dfc86.tar.gz
cpython-5e4d3725249410e174f8b59e85323d83a24dfc86.tar.bz2
Silence warning about set but unused variable inside compile_atom() in non-debug builds
Diffstat (limited to 'Parser/pgen.c')
-rw-r--r--Parser/pgen.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Parser/pgen.c b/Parser/pgen.c
index beaf53b..b2f8470 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) {