From 6db1e2ecd6bb06a170c88e910d37e9a95346c76f Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sun, 4 Feb 2024 22:15:07 -0600 Subject: [PATCH] func_create_base.hpp --- src/func_create_base.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/func_create_base.hpp b/src/func_create_base.hpp index 233685b2..3bab02df 100644 --- a/src/func_create_base.hpp +++ b/src/func_create_base.hpp @@ -34,9 +34,9 @@ namespace Func virtual ~CreateBase() {}; public: - virtual int operator()(Branches2 &branches_, - char const *fusepath, - mode_t const mode, + virtual int operator()(Branches2 &branches, + ghc::filesystem::path const &fusepath, + mode_t const mode, fuse_file_info_t *ffi) = 0; }; }