summaryrefslogtreecommitdiff
path: root/modules/mono/utils
diff options
context:
space:
mode:
authorIgnacio Etcheverry <ignalfonsore@gmail.com>2019-04-05 23:20:20 +0200
committerIgnacio Etcheverry <ignalfonsore@gmail.com>2019-04-05 23:41:51 +0200
commitad2127a3e8b274d4946a35cafd31c904a3de294b (patch)
treee50a6ac1cbee88aadeb478437bb9ecd114551824 /modules/mono/utils
parent9c3ddf05cb9c59817d885e9daca6e8f61c89dc97 (diff)
Replace a few #if/#elif with #ifdef and "#elif defined"
Diffstat (limited to 'modules/mono/utils')
-rw-r--r--modules/mono/utils/thread_local.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/utils/thread_local.h b/modules/mono/utils/thread_local.h
index 276db8830b..488cc2619a 100644
--- a/modules/mono/utils/thread_local.h
+++ b/modules/mono/utils/thread_local.h
@@ -39,7 +39,7 @@
#error Platform or compiler not supported
#endif
-#ifdef __GNUC__
+#if defined(__GNUC__)
#ifdef HAVE_GCC___THREAD
#define _THREAD_LOCAL_(m_t) __thread m_t
@@ -47,7 +47,7 @@
#define USE_CUSTOM_THREAD_LOCAL
#endif
-#elif _MSC_VER
+#elif defined(_MSC_VER)
#ifdef HAVE_DECLSPEC_THREAD
#define _THREAD_LOCAL_(m_t) __declspec(thread) m_t