diff options
author | bunnei <bunneidev@gmail.com> | 2014-09-10 02:50:51 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-09-10 02:50:51 +0200 |
commit | 7f201a98217bb31e0f5a36471b173823d9f9747b (patch) | |
tree | 5c394482907bf801cab150c8a84f03588f0282cf | |
parent | Merge pull request #95 from lioncash/disassembler (diff) | |
parent | Common: Remove HAVE_CXX11_SYNTAX define from Common.h (diff) | |
download | yuzu-7f201a98217bb31e0f5a36471b173823d9f9747b.tar yuzu-7f201a98217bb31e0f5a36471b173823d9f9747b.tar.gz yuzu-7f201a98217bb31e0f5a36471b173823d9f9747b.tar.bz2 yuzu-7f201a98217bb31e0f5a36471b173823d9f9747b.tar.lz yuzu-7f201a98217bb31e0f5a36471b173823d9f9747b.tar.xz yuzu-7f201a98217bb31e0f5a36471b173823d9f9747b.tar.zst yuzu-7f201a98217bb31e0f5a36471b173823d9f9747b.zip |
-rw-r--r-- | src/common/common.h | 6 |
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" |