From c53d9cfa887213b3591c0bcffb05cbd83ca6fbdf Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 26 Jun 2023 15:42:24 +0300 Subject: Suppress -Wdangling-reference GCC 13 warning --- build/root.build | 3 +++ 1 file changed, 3 insertions(+) (limited to 'build') diff --git a/build/root.build b/build/root.build index 3ee60eb..17e42b1 100644 --- a/build/root.build +++ b/build/root.build @@ -22,6 +22,9 @@ elif ($cxx.id == 'gcc') # cxx.coptions += -Wno-maybe-uninitialized -Wno-free-nonheap-object \ -Wno-stringop-overread + + 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