Kaydet (Commit) c6b4ef10 authored tarafından Senthil Kumaran's avatar Senthil Kumaran

default - Fix closes Issue 12604 - Use a proper no-op macro expansion for VTRACE macro in _sre.c

Patch by Petri Lehtinen and Josh Triplett.
...@@ -2730,7 +2730,7 @@ _compile(PyObject* self_, PyObject* args) ...@@ -2730,7 +2730,7 @@ _compile(PyObject* self_, PyObject* args)
#if defined(VVERBOSE) #if defined(VVERBOSE)
#define VTRACE(v) printf v #define VTRACE(v) printf v
#else #else
#define VTRACE(v) #define VTRACE(v) do {} while(0) /* do nothing */
#endif #endif
/* Report failure */ /* Report failure */
......
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