Kaydet (Commit) 52729ac8 authored tarafından Christian Heimes's avatar Christian Heimes

Silence a warning about an unsed variable in debug builds

üst bc288e8b
...@@ -665,8 +665,9 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) ...@@ -665,8 +665,9 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
#define STACKADJ(n) { (void)(BASIC_STACKADJ(n), \ #define STACKADJ(n) { (void)(BASIC_STACKADJ(n), \
lltrace && prtrace(TOP(), "stackadj")); \ lltrace && prtrace(TOP(), "stackadj")); \
assert(STACK_LEVEL() <= co->co_stacksize); } assert(STACK_LEVEL() <= co->co_stacksize); }
#define EXT_POP(STACK_POINTER) (lltrace && prtrace((STACK_POINTER)[-1], \ #define EXT_POP(STACK_POINTER) ((void)(lltrace && \
"ext_pop"), *--(STACK_POINTER)) prtrace((STACK_POINTER)[-1], "ext_pop")), \
*--(STACK_POINTER))
#else #else
#define PUSH(v) BASIC_PUSH(v) #define PUSH(v) BASIC_PUSH(v)
#define POP() BASIC_POP() #define POP() BASIC_POP()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment