Commit a7a7e42d authored by Senthil Kumaran's avatar Senthil Kumaran

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

parent a9d41065
......@@ -2744,7 +2744,7 @@ _compile(PyObject* self_, PyObject* args)
#if defined(VVERBOSE)
#define VTRACE(v) printf v
#else
#define VTRACE(v)
#define VTRACE(v) do {} while(0) /* do nothing */
#endif
/* 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