diff options
| author | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2025-03-23 09:20:59 +0200 |
|---|---|---|
| committer | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2025-03-23 19:47:09 +0200 |
| commit | c91e4ef515bbfac713980cbf786d7e2ee4965a00 (patch) | |
| tree | 3151afe54b6e1029811cc0e23eebd57eff7fb868 /meson.build | |
| parent | a8fac834d3919bb8d6657e0bffbdae1b1eccfbef (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.build | 5 |
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 += [ |
