From 1d66b1d3f4a4cf278c6c3e399cdaddcb37bafce3 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 6 Sep 2014 11:32:15 -0400 Subject: [PATCH] Common: Remove HAVE_CXX11_SYNTAX define from Common.h All the compilers we support have C++11 support now, so this isn't needed. --- Source/Core/Common/Common.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Source/Core/Common/Common.h b/Source/Core/Common/Common.h index 6b6ddf266c..09214b35f4 100644 --- a/Source/Core/Common/Common.h +++ b/Source/Core/Common/Common.h @@ -58,11 +58,6 @@ extern const char *netplay_dolphin_ver; #define STACKALIGN -#if __cplusplus >= 201103 || defined(_MSC_VER) || defined(__GXX_EXPERIMENTAL_CXX0X__) -#define HAVE_CXX11_SYNTAX 1 -#endif - -#if HAVE_CXX11_SYNTAX // An inheritable class to disallow the copy constructor and operator= functions class NonCopyable { @@ -74,7 +69,6 @@ private: NonCopyable(NonCopyable&); NonCopyable& operator=(NonCopyable& other); }; -#endif #ifdef __APPLE__ // The Darwin ABI requires that stack frames be aligned to 16-byte boundaries.