Commit 202a3c42 authored by Senthil Kumaran's avatar Senthil Kumaran

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

parent 29fa9d4d
...@@ -2760,7 +2760,7 @@ _compile(PyObject* self_, PyObject* args) ...@@ -2760,7 +2760,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