From ca528593f4c64a8464df9ac297c42561b14100be Mon Sep 17 00:00:00 2001 From: Christoph Hertzberg Date: Sat, 27 Feb 2021 16:34:42 +0100 Subject: Fixed/masked more implicit copy constructor warnings (cherry picked from commit 2883e91ce5a99c391fbf28e20160176b70854992) --- test/indexed_view.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test') diff --git a/test/indexed_view.cpp b/test/indexed_view.cpp index 231f44393..72c54af68 100644 --- a/test/indexed_view.cpp +++ b/test/indexed_view.cpp @@ -26,6 +26,9 @@ #if defined(__GNUC__) && (__GNUC__ >=9) #pragma GCC diagnostic ignored "-Wdeprecated-copy" #endif +#if defined(__clang__) && (__clang_major__ >= 10) + #pragma clang diagnostic ignored "-Wdeprecated-copy" +#endif #endif -- cgit v1.2.3