mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 12:17:11 +01:00 
			
		
		
		
	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:
		| @@ -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 | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Martin Hořeňovský
					Martin Hořeňovský