aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2023-06-26 19:06:11 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2023-06-26 19:06:11 +0300
commit0f3e27c3bbef6b806acefa17971b799a4719e1e1 (patch)
treedc53e0261f34e482791ba785b583cf2eedfbd749
parenta9d173f8df460ce4050e6aff8f95fec70156c107 (diff)
Suppress -Wdangling-reference GCC 13 warning
-rw-r--r--build/root.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/build/root.build b/build/root.build
index 8c8fcb5..ad832c7 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