aboutsummaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorBernd Schubert <bschubert@ddn.com>2024-12-12 16:08:50 +0100
committerBernd Schubert <bernd.schubert@fastmail.fm>2024-12-13 11:32:03 +0100
commita3a14ffb499712f36bbb24ba7684c8bd3ba337ca (patch)
treed4660c7bd139d7fe73023d0c8f3922fbfc104496 /meson.build
parent4ec109d1c447bbf5be05854e32d8683bb1df5a80 (diff)
downloadlibfuse-a3a14ffb499712f36bbb24ba7684c8bd3ba337ca.tar.gz
examples: Add memfs_ll.cc
This is an initial implementation and quickly hacked together within a few hours - issues expected. This also increase to C++17 as memfs_ll makes use of more recent features. Background to create this was actually to be able to test large file names (3 * 1024B), which couldn't be achieved with passthrough file system as non of the underlying file systems seems to support that. Signed-off-by: Bernd Schubert <bschubert@ddn.com>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 4b570d1..f05b94f 100644
--- a/meson.build
+++ b/meson.build
@@ -3,7 +3,7 @@ project('libfuse3', ['c'], version: '3.17.0',
default_options: [
'buildtype=debugoptimized',
'c_std=gnu11',
- 'cpp_std=c++11',
+ 'cpp_std=c++17',
'warning_level=2',
])