enable nullptr for VS2010

This commit is contained in:
Phil Nash 2014-09-18 18:23:47 +01:00
parent 73a0744452
commit 16a7db036f

View File

@ -80,6 +80,10 @@
// Visual C++
#ifdef _MSC_VER
#if (_MSC_VER >= 1600)
#define CATCH_CONFIG_CPP11_NULLPTR
#endif
#if (_MSC_VER >= 1310 ) // (VC++ 7.0+)
//#define CATCH_CONFIG_SFINAE // Not confirmed
#endif