summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2025-03-23 09:20:59 +0200
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2025-03-23 19:47:09 +0200
commitc91e4ef515bbfac713980cbf786d7e2ee4965a00 (patch)
tree3151afe54b6e1029811cc0e23eebd57eff7fb868 /meson.build
parenta8fac834d3919bb8d6657e0bffbdae1b1eccfbef (diff)
mu-sexp: fix c++23 warning for suffix operator
Space between operator"" and _xxx is deprecated.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 4001cab..d1c7b8b 100644
--- a/meson.build
+++ b/meson.build
@@ -62,7 +62,10 @@ extra_flags = [
'-Wno-switch-enum',
# assuming these are false alarm... (in fmt, with gcc13):
'-Wno-array-bounds',
- '-Wno-stringop-overflow',]
+ '-Wno-stringop-overflow',
+ # c++23, in tabulate.hpp (3rd-party)
+ '-Wno-deprecated-literal-operator'
+]
if (cxx.get_id() == 'clang')
extra_flags += [