Merge pull request #6163 from nicolasff/clang-13-mpy-cross
Explicitly ignore unused variables (fixes #6158)
This commit is contained in:
commit
73aeadb338
1 changed files with 5 additions and 0 deletions
5
py/bc.h
5
py/bc.h
|
|
@ -124,6 +124,11 @@
|
|||
D |= (z & 0x1) << n; \
|
||||
} \
|
||||
S += 1; \
|
||||
(void)E; \
|
||||
(void)F; \
|
||||
(void)A; \
|
||||
(void)K; \
|
||||
(void)D; \
|
||||
} while (0)
|
||||
|
||||
#define MP_BC_PRELUDE_SIG_DECODE(ip) \
|
||||
|
|
|
|||
Loading…
Reference in a new issue