GCC warning fix has to be constrained to gcc-7.

This commit is contained in:
jzmaddock
2018-08-13 09:29:46 +01:00
parent 4b6b13ad25
commit e0868d6474
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@
#include "test.hpp"
#include "check_integral_constant.hpp"
#ifdef BOOST_GCC
#if defined(BOOST_GCC) && (BOOST_GCC >= 70000)
#pragma GCC diagnostic ignored "-Wnoexcept-type"
#endif

View File

@@ -12,7 +12,7 @@
#include "test.hpp"
#include "check_integral_constant.hpp"
#ifdef BOOST_GCC
#if defined(BOOST_GCC) && (BOOST_GCC >= 70000)
#pragma GCC diagnostic ignored "-Wnoexcept-type"
#endif