Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c687960 commit de26cfcCopy full SHA for de26cfc
1 file changed
Python/ceval.c
@@ -542,8 +542,8 @@ eval_frame(PyFrameObject *f)
542
#define BASIC_POP() (*--stack_pointer)
543
544
#ifdef LLTRACE
545
-#define PUSH(v) (BASIC_PUSH(v), lltrace && prtrace(TOP(), "push"))
546
-#define POP() (lltrace && prtrace(TOP(), "pop"), BASIC_POP())
+#define PUSH(v) (void)(BASIC_PUSH(v), lltrace && prtrace(TOP(), "push"))
+#define POP() ((void)(lltrace && prtrace(TOP(), "pop")), BASIC_POP())
547
#else
548
#define PUSH(v) BASIC_PUSH(v)
549
#define POP() BASIC_POP()
0 commit comments