mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
Silence warning about set but unused variable inside compile_atom() in non-debug builds
This commit is contained in:
commit
1289565f4b
1 changed files with 1 additions and 0 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue