From 200a043bf7421b43e664160063f33634f9d21363 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sat, 3 Feb 2024 23:13:56 -0600 Subject: [PATCH] fuse_create_base.hpp --- src/fuse_create_base.hpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/fuse_create_base.hpp b/src/fuse_create_base.hpp index c2321474..373d55f4 100644 --- a/src/fuse_create_base.hpp +++ b/src/fuse_create_base.hpp @@ -29,11 +29,9 @@ namespace virtual ~CreateBase() {}; public: - virtual int operator(char const *fusepath, - mode_t const mode, + virtual int operator(Branches &branches_, + char const *fusepath, + mode_t const mode, fuse_file_info_t *ffi) = 0; - - public: - Branches *branches; }; }