summaryrefslogtreecommitdiff
path: root/src/common/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/common.h')
-rw-r--r--src/common/common.h6
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 @@
21 21
22#define STACKALIGN 22#define STACKALIGN
23 23
24#if __cplusplus >= 201103 || defined(_MSC_VER) || defined(__GXX_EXPERIMENTAL_CXX0X__) 24#if __cplusplus >= 201103L || defined(_MSC_VER) || defined(__GXX_EXPERIMENTAL_CXX0X__)
25#define HAVE_CXX11_SYNTAX 1 25#define HAVE_CXX11_SYNTAX 1
26#endif 26#endif
27 27
28#if HAVE_CXX11_SYNTAX 28//#if HAVE_CXX11_SYNTAX
29// An inheritable class to disallow the copy constructor and operator= functions 29// An inheritable class to disallow the copy constructor and operator= functions
30class NonCopyable 30class NonCopyable
31{ 31{
@@ -37,7 +37,7 @@ private:
37 NonCopyable(NonCopyable&); 37 NonCopyable(NonCopyable&);
38 NonCopyable& operator=(NonCopyable& other); 38 NonCopyable& operator=(NonCopyable& other);
39}; 39};
40#endif 40//#endif
41 41
42#include "common/log.h" 42#include "common/log.h"
43#include "common/common_types.h" 43#include "common/common_types.h"