From 28a3d614b3ef7554fc32ca122d15eda4e06d4ea8 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sun, 10 Mar 2024 16:17:39 -0500 Subject: [PATCH] state.hpp --- src/state.hpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/state.hpp b/src/state.hpp index e7184db5..d4e2f719 100644 --- a/src/state.hpp +++ b/src/state.hpp @@ -14,9 +14,13 @@ public: Branches2 branches; public: - int create(Path const &fusepath, - mode_t const mode, - fuse_file_info_t *ffi); + int + create(Path const &fusepath_, + mode_t const mode_, + fuse_file_info_t *ffi_) + { + return _create(branches,fusepath_,mode_,ffi_); + } private: Func2::Create _create;