mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-17 03:02:24 +01:00
automatic support nullptr on Visual Studio >=2005
This commit is contained in:
parent
85d33e2cbd
commit
e9597561cb
@ -80,6 +80,10 @@
|
|||||||
// Visual C++
|
// Visual C++
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
|
|
||||||
|
#if (_MSC_VER >= 1400)
|
||||||
|
#define CATCH_CONFIG_CPP11_NULLPTR
|
||||||
|
#endif
|
||||||
|
|
||||||
#if (_MSC_VER >= 1310 ) // (VC++ 7.0+)
|
#if (_MSC_VER >= 1310 ) // (VC++ 7.0+)
|
||||||
//#define CATCH_CONFIG_SFINAE // Not confirmed
|
//#define CATCH_CONFIG_SFINAE // Not confirmed
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user