From 0d97553a5e1d91edfc325f1d9f5cf8c8bdd6a496 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 16 Aug 2025 16:29:06 +0100 Subject: Fix-up all the clang-tidy warnings --- src/repoList.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/repoList.h') 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 #include #include + 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; -- cgit v1.2.3