diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-06-03 21:39:04 +0100 | 
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-06-03 21:39:04 +0100 | 
| commit | 75d965207f51e2dd19c7935feefba0433a3df29b (patch) | |
| tree | 07b2d5b5773243c11bb44cc42b89abb6de1b20e5 | |
| parent | Fix volume removal (diff) | |
| download | netfs-75d965207f51e2dd19c7935feefba0433a3df29b.tar.bz2 netfs-75d965207f51e2dd19c7935feefba0433a3df29b.tar.xz netfs-75d965207f51e2dd19c7935feefba0433a3df29b.zip  | |
fuseCall helper can be private
| -rw-r--r-- | libfusepp/fuseAppBase.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/libfusepp/fuseAppBase.h b/libfusepp/fuseAppBase.h index 5c8582c..8efed83 100644 --- a/libfusepp/fuseAppBase.h +++ b/libfusepp/fuseAppBase.h @@ -135,7 +135,7 @@ class DLL_PUBLIC FuseAppBase {  		static void fuseDestroy(void *);  		template <typename... Args> -		class fuseCall { +		class DLL_PRIVATE fuseCall {  			public:  				typedef int (*WrapperFunc)(Args...);  				template <int (FuseAppBase::*b)(Args...)>  | 
