Commit 0443ad3d authored by Robert Bradshaw's avatar Robert Bradshaw

Windows ICC fix from Christoph Gohlke

parent 807c3435
...@@ -6967,7 +6967,7 @@ utility_function_predeclarations = \ ...@@ -6967,7 +6967,7 @@ utility_function_predeclarations = \
# else # else
# define CYTHON_UNUSED # define CYTHON_UNUSED
# endif # endif
# elif defined(__ICC) || defined(__INTEL_COMPILER) # elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER))
# define CYTHON_UNUSED __attribute__ ((__unused__)) # define CYTHON_UNUSED __attribute__ ((__unused__))
# else # else
# define CYTHON_UNUSED # define CYTHON_UNUSED
......
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