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;