forked from boostorg/type_traits
Restrict gcc pragma to gcc-4.0 and later.
[SVN r79286]
This commit is contained in:
@ -23,7 +23,7 @@ namespace detail {
|
||||
#ifdef BOOST_MSVC
|
||||
#pragma warning( push )
|
||||
#pragma warning( disable : 4584 4250)
|
||||
#elif defined __GNUC__
|
||||
#elif defined(__GNUC__) && (__GNUC__ >= 4)
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user