Remove check for compiler version before using __COUNTER__

All still supported compiler versions support __COUNTER__.
User can also still turn off use of __COUNTER__ by defining
CATCH_CONFIG_NO_COUNTER.
This commit is contained in:
Martin Hořeňovský 2017-08-29 15:45:58 +02:00
parent 6e46f29830
commit 4453fefb00
1 changed files with 2 additions and 7 deletions

View File

@ -86,15 +86,10 @@
////////////////////////////////////////////////////////////////////////////////
// Use __COUNTER__ if the compiler supports it
#if ( defined _MSC_VER && _MSC_VER >= 1300 ) || \
( defined __GNUC__ && ( __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3 )) ) || \
( defined __clang__ && __clang_major__ >= 3 )
// All supported compilers support COUNTER macro,
//but user still might want to turn it off
#define CATCH_INTERNAL_CONFIG_COUNTER
#endif
// Now set the actual defines based on the above + anything the user has configured