summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar archshift2014-04-30 23:47:38 -0700
committerGravatar archshift2014-04-30 23:47:38 -0700
commit7817d6c79a2c169eb90714c1a05745d208e8ad32 (patch)
treeae12037360cc0a3a21d36127960f4cba8cc91b96 /src/common
parentFixed indents (diff)
downloadyuzu-7817d6c79a2c169eb90714c1a05745d208e8ad32.tar.gz
yuzu-7817d6c79a2c169eb90714c1a05745d208e8ad32.tar.xz
yuzu-7817d6c79a2c169eb90714c1a05745d208e8ad32.zip
Support for C++11 on OSX
Diffstat (limited to 'src/common')
-rw-r--r--src/common/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/common.h b/src/common/common.h
index 30a6761b7..2578d0010 100644
--- a/src/common/common.h
+++ b/src/common/common.h
@@ -25,7 +25,7 @@
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"