diff options
author | Bernd Schubert <bernd@bsbernd.com> | 2025-07-15 18:46:44 +0200 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-07-15 20:15:41 +0200 |
commit | 3be844147764b96496bcae6d92fa4b0e43ebff42 (patch) | |
tree | b0b7d9ccbc264341c3d9b41e5349612d0d14ddee /meson.build | |
parent | fc9888e0b281dc0d0fcebcfe0c8c392263b1b308 (diff) | |
download | libfuse-3be844147764b96496bcae6d92fa4b0e43ebff42.tar.gz |
Switch to c++20
This only effects example/{passthrough_hp.cc,memfs_ll.cc} and is mainly
to avoid these warnings
../example/memfs_ll.cc:1100:1: warning: missing field 'statx' initializer
[-Wmissing-designated-field-initializers]
Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 16b804e..7091d5f 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ project('libfuse3', ['c'], default_options: [ 'buildtype=debugoptimized', 'c_std=gnu11', - 'cpp_std=c++17', + 'cpp_std=c++20', 'warning_level=2', ]) |