Disable -Wdeprecated-declarations in get_pointer_test.cpp

This commit is contained in:
Peter Dimov 2021-11-01 01:29:15 +02:00
parent 309a6bb797
commit 9b5bf05fae

View File

@ -8,6 +8,10 @@
// http://www.boost.org/LICENSE_1_0.txt
//
#if defined(__GNUC__)
#pragma GCC diagnostic ignored "-Wdeprecated-declarations" // std::auto_ptr
#endif
#include <boost/get_pointer.hpp>
#include <boost/core/lightweight_test.hpp>
#include <memory>