From ed5ea88e452135e01d85556cf138cb68dd84a93a Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 26 Jun 2023 15:40:44 +0300 Subject: Suppress -Wunqualified-std-cast-call Clang 15 warning --- tests/build/root.build | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests') diff --git a/tests/build/root.build b/tests/build/root.build index a1e935c..9c898e7 100644 --- a/tests/build/root.build +++ b/tests/build/root.build @@ -16,6 +16,8 @@ if ($cxx.class == 'msvc') elif ($cxx.id == 'gcc') cxx.coptions += -Wno-maybe-uninitialized -Wno-free-nonheap-object \ -Wno-stringop-overread +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. # -- cgit v1.1