Compile in CATCH_CONFIG_CPP11_NULLPTR for some compilers

This commit is contained in:
Phil Nash 2013-12-14 14:32:26 +00:00
parent b4625208d0
commit 563429d9a3
1 changed files with 16 additions and 0 deletions

View File

@ -10,6 +10,17 @@
// Much of the following code is based on Boost (1.53)
#ifdef __clang__
#define CATCH_CONFIG_CPP11_NULLPTR
#if __has_feature(cxx_nullptr)
#define CATCH_CONFIG_CPP11_NULLPTR
#endif
#endif // __clang__
////////////////////////////////////////////////////////////////////////////////
// Borland
#ifdef __BORLANDC__
@ -56,6 +67,11 @@
#endif // __GNUC__ < 3
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6) || defined(__GXX_EXPERIMENTAL_CXX0X__)
#define CATCH_CONFIG_CPP11_NULLPTR
#endif
#endif // __GNUC__