aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2021-02-27 16:34:42 +0100
committerGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2021-02-27 18:44:26 +0100
commitca528593f4c64a8464df9ac297c42561b14100be (patch)
treedef8b2b26650a4c6c8e75234eb33c7432390a218 /test
parent81b5fe2f0a86078189d1b4f66810d158ece0ea0e (diff)
Fixed/masked more implicit copy constructor warnings
(cherry picked from commit 2883e91ce5a99c391fbf28e20160176b70854992)
Diffstat (limited to 'test')
-rw-r--r--test/indexed_view.cpp3
1 files changed, 3 insertions, 0 deletions
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