Commit 37d5ce6a authored by Stefan Behnel's avatar Stefan Behnel

disable atomics usage for MSVC again - seems to be unreliable

parent 51c1a65f
...@@ -33,7 +33,7 @@ typedef struct { ...@@ -33,7 +33,7 @@ typedef struct {
#ifdef __PYX_DEBUG_ATOMICS #ifdef __PYX_DEBUG_ATOMICS
#warning "Using GNU atomics" #warning "Using GNU atomics"
#endif #endif
#elif CYTHON_ATOMICS && defined(_MSC_VER) #elif CYTHON_ATOMICS && defined(_MSC_VER) && 0
/* msvc */ /* msvc */
#include <Windows.h> #include <Windows.h>
#undef __pyx_atomic_int_type #undef __pyx_atomic_int_type
......
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