Skip to content

Commit bdc63a0

Browse files
committed
BUG: fix typo in __declspec(thread) check
1 parent b8f31dc commit bdc63a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy/_core/include/numpy/npy_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
#define NPY_TLS _Thread_local
122122
#elif defined(HAVE___THREAD)
123123
#define NPY_TLS __thread
124-
#elif defined(HAVE__DECLSPEC_THREAD_)
124+
#elif defined(HAVE___DECLSPEC_THREAD_)
125125
#define NPY_TLS __declspec(thread)
126126
#else
127127
#define NPY_TLS

0 commit comments

Comments
 (0)