Update Platform_WIN32.h

Default move semantics are not supported with 2012 (1700).
This commit is contained in:
hakan-akan 2016-05-27 18:54:57 -07:00
parent 75e4bbaf91
commit eec6f09f71

View File

@ -89,8 +89,8 @@
#endif
// Enable C++11 support for VS 2010 and newer
#if defined(_MSC_VER) && (_MSC_VER >= 1700) && !defined(POCO_ENABLE_CPP11)
// Enable C++11 support for VS 2014 and newer
#if defined(_MSC_VER) && (_MSC_VER >= 1900) && !defined(POCO_ENABLE_CPP11)
#define POCO_ENABLE_CPP11
#endif