Skip to content

Commit

Permalink
Give up on _Pragma for gcc, force disable Wparentheses in all TUs
Browse files Browse the repository at this point in the history
  • Loading branch information
horenmar committed Apr 5, 2017
1 parent 3ae076c commit 8f85d08
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 18 deletions.
13 changes: 0 additions & 13 deletions include/internal/catch_compiler_capabilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,23 +118,10 @@
// GCC
#ifdef __GNUC__

# if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
# define CATCH_GCC_HAS_NEW_PRAGMA
# endif

# if __GNUC__ == 4 && __GNUC_MINOR__ >= 6 && defined(__GXX_EXPERIMENTAL_CXX0X__)
# define CATCH_INTERNAL_CONFIG_CPP11_NULLPTR
# endif

# if !defined(CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS) && defined(CATCH_GCC_HAS_NEW_PRAGMA)
# 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
Expand Down
6 changes: 1 addition & 5 deletions include/internal/catch_suppress_warnings.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,7 @@
#elif defined __GNUC__
# pragma GCC diagnostic ignored "-Wvariadic-macros"
# pragma GCC diagnostic ignored "-Wunused-variable"

// For newer version we can use __Pragma to disable the warnings locally
# if __GNUC__ == 4 && __GNUC_MINOR__ >= 4 && __GNUC_MINOR__ <= 7
# pragma GCC diagnostic ignored "-Wparentheses"
# endif
# pragma GCC diagnostic ignored "-Wparentheses"

# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wpadded"
Expand Down

0 comments on commit 8f85d08

Please sign in to comment.