3.2 - Fix Issue 12604 - Use a proper no-op macro expansion for VTRACE macro in _sre.c
This commit is contained in:
parent
29fa9d4d68
commit
202a3c422b
|
@ -2760,7 +2760,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 */
|
||||
|
|
Loading…
Reference in New Issue