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

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

üst ddd40312
...@@ -2744,7 +2744,7 @@ _compile(PyObject* self_, PyObject* args) ...@@ -2744,7 +2744,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