Define _DEBUG to 1 to do exactly like /LDd, /MDd or /MTd compiler options

This commit is contained in:
Lamarre, Mathieu 2017-08-31 09:43:07 -04:00
commit 711ae14541

View file

@ -3,7 +3,7 @@
/* Use debug wrappers with the Python release dll */
# undef _DEBUG
# include <Python.h>
# define _DEBUG
# define _DEBUG 1
#else
# include <Python.h>
#endif