diff options
author | archshift <admin@archshift.com> | 2014-04-30 04:27:01 +0200 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-04-30 04:27:01 +0200 |
commit | 52377cf0d2e29143717898e82f09349d417da1a0 (patch) | |
tree | 65568906f56f3470b5b29c3106b1e244584b99d9 /src/common/common.h | |
parent | Merge commit upstream/master into issue-7-fix (diff) | |
download | yuzu-52377cf0d2e29143717898e82f09349d417da1a0.tar yuzu-52377cf0d2e29143717898e82f09349d417da1a0.tar.gz yuzu-52377cf0d2e29143717898e82f09349d417da1a0.tar.bz2 yuzu-52377cf0d2e29143717898e82f09349d417da1a0.tar.lz yuzu-52377cf0d2e29143717898e82f09349d417da1a0.tar.xz yuzu-52377cf0d2e29143717898e82f09349d417da1a0.tar.zst yuzu-52377cf0d2e29143717898e82f09349d417da1a0.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/common.h b/src/common/common.h index 58de0c7d9..30a6761b7 100644 --- a/src/common/common.h +++ b/src/common/common.h @@ -21,11 +21,11 @@ #define STACKALIGN -#if __cplusplus >= 201103 || defined(_MSC_VER) || defined(__GXX_EXPERIMENTAL_CXX0X__) +#if __cplusplus >= 201103L || defined(_MSC_VER) || defined(__GXX_EXPERIMENTAL_CXX0X__) #define HAVE_CXX11_SYNTAX 1 #endif -#if HAVE_CXX11_SYNTAX +//#if HAVE_CXX11_SYNTAX // An inheritable class to disallow the copy constructor and operator= functions class NonCopyable { @@ -37,7 +37,7 @@ private: NonCopyable(NonCopyable&); NonCopyable& operator=(NonCopyable& other); }; -#endif +//#endif #include "common/log.h" #include "common/common_types.h" |