Ignore -Waddress in assert_test and verify_test

This commit is contained in:
Peter Dimov
2019-12-08 21:06:58 +02:00
parent 264f98f32a
commit d1c4462e35
2 changed files with 10 additions and 2 deletions

View File

@ -9,7 +9,11 @@
// http://www.boost.org/LICENSE_1_0.txt)
//
#include <boost/detail/lightweight_test.hpp>
#include <boost/core/lightweight_test.hpp>
#if defined(__GNUC__)
# pragma GCC diagnostic ignored "-Waddress"
#endif
#include <boost/assert.hpp>

View File

@ -9,7 +9,11 @@
// http://www.boost.org/LICENSE_1_0.txt)
//
#include <boost/detail/lightweight_test.hpp>
#include <boost/core/lightweight_test.hpp>
#if defined(__GNUC__)
# pragma GCC diagnostic ignored "-Waddress"
#endif
#include <boost/assert.hpp>