Support for C++11 on OSX

This commit is contained in:
archshift 2014-04-30 23:47:38 -07:00
parent 704075f04a
commit 7817d6c79a
2 changed files with 4 additions and 5 deletions

View file

@ -25,7 +25,7 @@
#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"