This kills a compilation warning. Signed-off-by: Julien Danjou <[email protected]> --- Cython/Compiler/Nodes.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Cython/Compiler/Nodes.py b/Cython/Compiler/Nodes.py index e6b0048..dfe94d6 100644 --- a/Cython/Compiler/Nodes.py +++ b/Cython/Compiler/Nodes.py @@ -4822,7 +4822,7 @@ utility_function_predeclarations = \ """ #ifdef __GNUC__ #define INLINE __inline__ -#elif _WIN32 +#elif defined(_WIN32) #define INLINE __inline #else #define INLINE -- 1.6.5.4 _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
