From e5293b08af3dbb50186398407b94cbed04e3136b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Fri, 11 Sep 2015 23:19:19 -0700 Subject: [PATCH] Cleanup. --- include/bx/macros.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/include/bx/macros.h b/include/bx/macros.h index 607c8fe..279343b 100644 --- a/include/bx/macros.h +++ b/include/bx/macros.h @@ -63,11 +63,7 @@ # if BX_COMPILER_CLANG && (BX_PLATFORM_OSX || BX_PLATFORM_IOS) # define BX_THREAD /* not supported right now */ # else -# if (__GNUC__ == 4) && (__GNUC_MINOR__ <= 2) -# define BX_THREAD /* not supported right now */ -# else -# define BX_THREAD __thread -# endif // __GNUC__ <= 4.2 +# define BX_THREAD __thread # endif // BX_COMPILER_CLANG # define BX_ATTRIBUTE(_x) __attribute__( (_x) ) # if BX_COMPILER_MSVC_COMPATIBLE