aboutsummaryrefslogtreecommitdiff
path: root/build/root.build
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2023-06-26 15:42:24 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2023-06-26 16:41:43 +0300
commitc53d9cfa887213b3591c0bcffb05cbd83ca6fbdf (patch)
tree0523f8e6e5e4be867cf22885f1650c8a214f9b39 /build/root.build
parented5ea88e452135e01d85556cf138cb68dd84a93a (diff)
Suppress -Wdangling-reference GCC 13 warning
Diffstat (limited to 'build/root.build')
-rw-r--r--build/root.build3
1 files changed, 3 insertions, 0 deletions
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