Commit ddf9821e authored by Lisandro Dalcin's avatar Lisandro Dalcin

Replace "#if !defined" -> "#ifndef" in utility code

parent fd2c05e0
...@@ -59,16 +59,16 @@ ...@@ -59,16 +59,16 @@
#define __Pyx_DefaultClassType PyType_Type #define __Pyx_DefaultClassType PyType_Type
#endif #endif
#if !defined(Py_TPFLAGS_CHECKTYPES) #ifndef Py_TPFLAGS_CHECKTYPES
#define Py_TPFLAGS_CHECKTYPES 0 #define Py_TPFLAGS_CHECKTYPES 0
#endif #endif
#if !defined(Py_TPFLAGS_HAVE_INDEX) #ifndef Py_TPFLAGS_HAVE_INDEX
#define Py_TPFLAGS_HAVE_INDEX 0 #define Py_TPFLAGS_HAVE_INDEX 0
#endif #endif
#if !defined(Py_TPFLAGS_HAVE_NEWBUFFER) #ifndef Py_TPFLAGS_HAVE_NEWBUFFER
#define Py_TPFLAGS_HAVE_NEWBUFFER 0 #define Py_TPFLAGS_HAVE_NEWBUFFER 0
#endif #endif
#if !defined(Py_TPFLAGS_HAVE_FINALIZE) #ifndef Py_TPFLAGS_HAVE_FINALIZE
#define Py_TPFLAGS_HAVE_FINALIZE 0 #define Py_TPFLAGS_HAVE_FINALIZE 0
#endif #endif
......
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