diff options
author | Guido van Rossum <guido@python.org> | 2023-11-01 14:24:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-01 14:24:52 -0700 |
commit | e4b37835eff1773504d5b6e7534e224d96abcedf (patch) | |
tree | da532eb3a92583d970500253da111e3c183c64c8 /Python/executor_cases.c.h | |
parent | 834b7c18d74da3b30fdca66cc7da6b9e1db3ce6c (diff) | |
download | cpython-e4b37835eff1773504d5b6e7534e224d96abcedf.tar.gz cpython-e4b37835eff1773504d5b6e7534e224d96abcedf.zip |
GH-111485: Silence warnings in Python/executor_cases.c.h (#111619)
Diffstat (limited to 'Python/executor_cases.c.h')
-rw-r--r-- | Python/executor_cases.c.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/executor_cases.c.h b/Python/executor_cases.c.h index fdf3e4b01a8..903fc40595c 100644 --- a/Python/executor_cases.c.h +++ b/Python/executor_cases.c.h @@ -884,6 +884,8 @@ STAT_INC(UNPACK_SEQUENCE, deferred); DECREMENT_ADAPTIVE_COUNTER(this_instr[1].cache); #endif /* ENABLE_SPECIALIZATION */ + (void)seq; + (void)counter; break; } |