From 6acaebbf1e0b466f9fdca90e257c5698ffa8690e Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 26 Jun 2023 16:20:28 +0300 Subject: Suppress -Wdangling-reference GCC 13 warning --- build/root.build | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build/root.build b/build/root.build index a6502cf..8c7f674 100644 --- a/build/root.build +++ b/build/root.build @@ -16,7 +16,12 @@ if ($cxx.target.system == 'win32-msvc') if ($cxx.class == 'msvc') cxx.coptions += /wd4251 /wd4275 /wd4800 elif ($cxx.id == 'gcc') +{ cxx.coptions += -Wno-maybe-uninitialized -Wno-free-nonheap-object # libbutl + + if ($cxx.version.major >= 13) + cxx.coptions += -Wno-dangling-reference +} elif ($cxx.id.type == 'clang' && $cxx.version.major >= 15) cxx.coptions += -Wno-unqualified-std-cast-call -- cgit v1.1