summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-09-08 21:00:33 +0200
committerLioncash <mathew1800@gmail.com>2014-09-08 21:01:15 +0200
commit5b65decf91426e19e641d16183b4e6f6bdfd96d4 (patch)
tree5c394482907bf801cab150c8a84f03588f0282cf /src/common
parentMerge pull request #95 from lioncash/disassembler (diff)
downloadyuzu-5b65decf91426e19e641d16183b4e6f6bdfd96d4.tar
yuzu-5b65decf91426e19e641d16183b4e6f6bdfd96d4.tar.gz
yuzu-5b65decf91426e19e641d16183b4e6f6bdfd96d4.tar.bz2
yuzu-5b65decf91426e19e641d16183b4e6f6bdfd96d4.tar.lz
yuzu-5b65decf91426e19e641d16183b4e6f6bdfd96d4.tar.xz
yuzu-5b65decf91426e19e641d16183b4e6f6bdfd96d4.tar.zst
yuzu-5b65decf91426e19e641d16183b4e6f6bdfd96d4.zip
Diffstat (limited to 'src/common')
-rw-r--r--src/common/common.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/common/common.h b/src/common/common.h
index cb69eabe4..9f3016d34 100644
--- a/src/common/common.h
+++ b/src/common/common.h
@@ -20,11 +20,6 @@
#define STACKALIGN
-#if __cplusplus >= 201103L || 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
{
@@ -36,7 +31,6 @@ private:
NonCopyable(NonCopyable&);
NonCopyable& operator=(NonCopyable& other);
};
-#endif
#include "common/log.h"
#include "common/common_types.h"