summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-20 15:43:52 +0200
committerGitHub <noreply@github.com>2018-04-20 15:43:52 +0200
commit4d96997447cad9d236770f930f61d2ed298baeff (patch)
tree2bcccecc58a11b4c5f3f10098e93bbe6292f5b25 /src
parentMerge pull request #362 from lioncash/snprintf (diff)
parentcommon/thread: Remove unnecessary feature checking for thread_local (diff)
downloadyuzu-4d96997447cad9d236770f930f61d2ed298baeff.tar
yuzu-4d96997447cad9d236770f930f61d2ed298baeff.tar.gz
yuzu-4d96997447cad9d236770f930f61d2ed298baeff.tar.bz2
yuzu-4d96997447cad9d236770f930f61d2ed298baeff.tar.lz
yuzu-4d96997447cad9d236770f930f61d2ed298baeff.tar.xz
yuzu-4d96997447cad9d236770f930f61d2ed298baeff.tar.zst
yuzu-4d96997447cad9d236770f930f61d2ed298baeff.zip
Diffstat (limited to 'src')
-rw-r--r--src/common/thread.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/common/thread.h b/src/common/thread.h
index fa475ab51..9465e1de7 100644
--- a/src/common/thread.h
+++ b/src/common/thread.h
@@ -11,25 +11,6 @@
#include <thread>
#include "common/common_types.h"
-// Support for C++11's thread_local keyword was surprisingly spotty in compilers until very
-// recently. Fortunately, thread local variables have been well supported for compilers for a while,
-// but with semantics supporting only POD types, so we can use a few defines to get some amount of
-// backwards compat support.
-// WARNING: This only works correctly with POD types.
-#if defined(__clang__)
-#if !__has_feature(cxx_thread_local)
-#define thread_local __thread
-#endif
-#elif defined(__GNUC__)
-#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 8)
-#define thread_local __thread
-#endif
-#elif defined(_MSC_VER)
-#if _MSC_VER < 1900
-#define thread_local __declspec(thread)
-#endif
-#endif
-
namespace Common {
int CurrentThreadId();