diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-08-16 16:29:06 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-08-16 16:29:06 +0100 |
commit | 0d97553a5e1d91edfc325f1d9f5cf8c8bdd6a496 (patch) | |
tree | a5869036a4b8109f7db71f8e3970d646622e5e8c /src/repoList.h | |
parent | Update branch names from master to main (diff) | |
download | netfs-gitfs-0d97553a5e1d91edfc325f1d9f5cf8c8bdd6a496.tar.bz2 netfs-gitfs-0d97553a5e1d91edfc325f1d9f5cf8c8bdd6a496.tar.xz netfs-gitfs-0d97553a5e1d91edfc325f1d9f5cf8c8bdd6a496.zip |
Fix-up all the clang-tidy warnings
Diffstat (limited to 'src/repoList.h')
-rw-r--r-- | src/repoList.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/repoList.h b/src/repoList.h index 7995136..9dab8b5 100644 --- a/src/repoList.h +++ b/src/repoList.h @@ -5,6 +5,7 @@ #include <service.h> #include <string> #include <volume.h> + namespace Ice { struct Current; } @@ -12,11 +13,10 @@ namespace Ice { namespace GitFS { class RepoList : public NetFS::Service { public: - RepoList(Ice::PropertiesPtr &&); + explicit RepoList(Ice::PropertiesPtr); - NetFS::VolumePrxPtr connect( - const ::std::string volume, const ::std::string auth, const ::Ice::Current & current) override; - NetFS::SettingsPtr getSettings(const ::Ice::Current & current) override; + NetFS::VolumePrxPtr connect(::std::string volume, ::std::string auth, const ::Ice::Current & ice) override; + NetFS::SettingsPtr getSettings(const ::Ice::Current & ice) override; private: const Ice::PropertiesPtr properties; |