Disable -Wdeprecated-declarations in iterator_test.cpp

This commit is contained in:
Peter Dimov
2021-11-01 01:47:28 +02:00
parent 971cda2e4c
commit bed07e7d5b

View File

@ -8,6 +8,10 @@
// http://www.boost.org/LICENSE_1_0.txt
//
#if defined(__clang__)
# pragma clang diagnostic ignored "-Wdeprecated-declarations"
#endif
#include <boost/iterator.hpp>
#include <boost/core/is_same.hpp>
#include <boost/core/lightweight_test_trait.hpp>