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)
#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