mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 20:27:11 +01:00 
			
		
		
		
	push/pop warnings when disabling parentheses warnings within assertion (gcc/ clang)
This commit is contained in:
		| @@ -45,6 +45,7 @@ | ||||
|         try { \ | ||||
|             CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS \ | ||||
|             ( __catchResult <= expr ).endExpression(); \ | ||||
|             CATCH_INTERNAL_UNSUPPRESS_PARENTHESES_WARNINGS \ | ||||
|         } \ | ||||
|         catch( ... ) { \ | ||||
|             __catchResult.useActiveException( resultDisposition ); \ | ||||
|   | ||||
| @@ -62,7 +62,11 @@ | ||||
| #  endif | ||||
|  | ||||
| #   if defined(CATCH_CPP11_OR_GREATER) | ||||
| #       define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS _Pragma( "clang diagnostic ignored \"-Wparentheses\"" ) | ||||
| #       define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS \ | ||||
|             _Pragma( "clang diagnostic push" ) \ | ||||
|             _Pragma( "clang diagnostic ignored \"-Wparentheses\"" ) | ||||
| #       define CATCH_INTERNAL_UNSUPPRESS_PARENTHESES_WARNINGS \ | ||||
|             _Pragma( "clang diagnostic pop" ) | ||||
| #   endif | ||||
|  | ||||
| #endif // __clang__ | ||||
| @@ -97,9 +101,15 @@ | ||||
| #   endif | ||||
|  | ||||
| #   if !defined(CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS) && defined(CATCH_CPP11_OR_GREATER) | ||||
| #       define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS _Pragma( "GCC diagnostic ignored \"-Wparentheses\"" ) | ||||
| #       define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS \ | ||||
|             _Pragma( "GCC diagnostic push" ) \ | ||||
|             _Pragma( "GCC diagnostic ignored \"-Wparentheses\"" ) | ||||
| #       define CATCH_INTERNAL_UNSUPPRESS_PARENTHESES_WARNINGS \ | ||||
|             _Pragma( "GCC diagnostic pop" ) | ||||
| #   endif | ||||
|  | ||||
|  | ||||
|  | ||||
| // - otherwise more recent versions define __cplusplus >= 201103L | ||||
| // and will get picked up below | ||||
|  | ||||
| @@ -242,6 +252,7 @@ | ||||
|  | ||||
| #if !defined(CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS) | ||||
| #   define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS | ||||
| #   define CATCH_INTERNAL_UNSUPPRESS_PARENTHESES_WARNINGS | ||||
| #endif | ||||
|  | ||||
| // noexcept support: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Phil Nash
					Phil Nash