aboutsummaryrefslogtreecommitdiff
path: root/src/gb/gb.h
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-01-16 19:23:13 +0000
committergingerBill <bill@gingerbill.org>2023-01-16 19:23:13 +0000
commit4a8564aff7d0cc22ea8facd967c27cdc18e2fac0 (patch)
treebac478535706f9adb2366c4da24a2baea08b72e9 /src/gb/gb.h
parentedb23db2ae519627e0d67d482764b01488e78b4e (diff)
Update threading.cpp to have helgrind annotations
Diffstat (limited to 'src/gb/gb.h')
-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