aboutsummaryrefslogtreecommitdiff
path: root/src/gb
diff options
context:
space:
mode:
Diffstat (limited to 'src/gb')
-rw-r--r--src/gb/gb.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gb/gb.h b/src/gb/gb.h
index 90f2fd15a..bc4c1f27d 100644
--- a/src/gb/gb.h
+++ b/src/gb/gb.h
@@ -465,8 +465,6 @@ typedef i32 b32; // NOTE(bill): Prefer this!!!
#if !defined(gb_thread_local)
#if defined(_MSC_VER) && _MSC_VER >= 1300
#define gb_thread_local __declspec(thread)
- #elif defined(__GNUC__)
- #define gb_thread_local __thread
#else
#define gb_thread_local thread_local
#endif