aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2023-06-26 18:32:43 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2023-06-26 18:32:43 +0300
commite4e004adc6b30ae6dc8b06b22731243b418fe294 (patch)
tree3267e9db75429bdedeefb2766d82ba51cac978da
parent56f827dcf55d349ac2604099e6720c7990020e99 (diff)
Suppress -Wunqualified-std-cast-call Clang 15 warning
-rw-r--r--build/root.build2
-rw-r--r--tests/build/root.build2
2 files changed, 4 insertions, 0 deletions
diff --git a/build/root.build b/build/root.build
index 75ac4be..be2f19a 100644
--- a/build/root.build
+++ b/build/root.build
@@ -17,3 +17,5 @@ if ($cxx.class == 'msvc')
cxx.coptions += /wd4251 /wd4275 /wd4800
elif ($cxx.id == 'gcc')
cxx.coptions += -Wno-maybe-uninitialized -Wno-free-nonheap-object # libbutl
+elif ($cxx.id.type == 'clang' && $cxx.version.major >= 15)
+ cxx.coptions += -Wno-unqualified-std-cast-call
diff --git a/tests/build/root.build b/tests/build/root.build
index 8a3f2e7..f9dada1 100644
--- a/tests/build/root.build
+++ b/tests/build/root.build
@@ -15,6 +15,8 @@ if ($cxx.class == 'msvc')
cxx.coptions += /wd4251 /wd4275 /wd4800
elif ($cxx.id == 'gcc')
cxx.coptions += -Wno-maybe-uninitialized -Wno-free-nonheap-object # libbutl
+elif ($cxx.id.type == 'clang' && $cxx.version.major >= 15)
+ cxx.coptions += -Wno-unqualified-std-cast-call
# Every exe{} in this subproject is by default a test.
#