mu-sexp: fix c++23 warning for suffix operator
Space between operator"" and _xxx is deprecated.
This commit is contained in:
@ -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 += [
|
||||
|
||||
Reference in New Issue
Block a user