Removed THREAD_LOCAL macro. (#101)

This commit is contained in:
Tom Lally 2022-08-30 05:10:33 +01:00 committed by GitHub
parent d94ecfe078
commit c065d22dda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 12 deletions

View file

@ -225,14 +225,6 @@ typedef union _LARGE_INTEGER {
#define DEBUG_BREAK raise(SIGTRAP)
#endif
#if defined(_MSC_VER)
#define THREAD_LOCAL __declspec(thread)
#elif defined(__GNUC__)
#define THREAD_LOCAL __thread
#else
#define THREAD_LOCAL thread_local
#endif
#if defined(_MSC_VER)
#define DLLEXPORT __declspec(dllexport)
#elif defined(__GNUC__)