From bed07e7d5b236aefc23ddd3eb6721dfd09dcba2b Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 1 Nov 2021 01:47:28 +0200 Subject: [PATCH] Disable -Wdeprecated-declarations in iterator_test.cpp --- test/iterator_test.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/iterator_test.cpp b/test/iterator_test.cpp index 3eb2902..7388cbe 100644 --- a/test/iterator_test.cpp +++ b/test/iterator_test.cpp @@ -8,6 +8,10 @@ // http://www.boost.org/LICENSE_1_0.txt // +#if defined(__clang__) +# pragma clang diagnostic ignored "-Wdeprecated-declarations" +#endif + #include #include #include