We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f23b456 commit 032dbc4Copy full SHA for 032dbc4
1 file changed
src/gl/loader.h
@@ -131,11 +131,10 @@ EXPORT extern void *egl;
131
132
#if defined(_WIN32) || defined(_WIN64)
133
#define THREAD_LOCAL __declspec(thread)
134
-#elif (__STDC_VERSION__ >= 201112L) // >= C11
135
- #define THREAD_LOCAL _Thread_local
136
#elif (__STDC_VERSION__ > 201710L) // > C23
137
- #undef THREAD_LOCAL
138
#define THREAD_LOCAL thread_local
+#elif (__STDC_VERSION__ >= 201112L) // >= C11
+ #define THREAD_LOCAL _Thread_local
139
#elif defined (__GCC__) || defined(__clang__)
140
#define THREAD_LOCAL __thread
141
#else
0 commit comments