From 0c2f684f2a382fd02ec5bbb1e14cd9458c3e17ec Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sat, 3 Feb 2024 23:26:15 -0600 Subject: [PATCH] func_create_base.hpp --- src/func_create_base.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/func_create_base.hpp b/src/func_create_base.hpp index d3e02988..a260ee80 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, - fuse_file_info_t *ffi) = 0; + virtual int operator()(Branches2 &branches_, + char const *fusepath, + mode_t const mode, + fuse_file_info_t *ffi) = 0; }; }