1
0
forked from boostorg/mp11

Disable g++ 4.7 sign-compare warnings

This commit is contained in:
Peter Dimov
2019-01-11 07:21:13 +02:00
parent 6ed9f38ca5
commit a0137db344
3 changed files with 15 additions and 0 deletions

View File

@ -6,6 +6,11 @@
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
#include <boost/mp11/detail/config.hpp>
#if BOOST_MP11_WORKAROUND( BOOST_MP11_GCC, < 40800 )
# pragma GCC diagnostic ignored "-Wsign-compare"
#endif
#include <boost/mp11/function.hpp>
#include <boost/mp11/integral.hpp>

View File

@ -6,6 +6,11 @@
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
#include <boost/mp11/detail/config.hpp>
#if BOOST_MP11_WORKAROUND( BOOST_MP11_GCC, < 40800 )
# pragma GCC diagnostic ignored "-Wsign-compare"
#endif
#include <boost/mp11/function.hpp>
#include <boost/mp11/integral.hpp>

View File

@ -6,6 +6,11 @@
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
#include <boost/mp11/detail/config.hpp>
#if BOOST_MP11_WORKAROUND( BOOST_MP11_GCC, < 40800 )
# pragma GCC diagnostic ignored "-Wsign-compare"
#endif
#include <boost/mp11/function.hpp>
#include <boost/mp11/integral.hpp>