Git: Change some functions in GitClient to const

Change-Id: Iefd3e0345c7a507d1d5c225ea81677e7a93df295
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Orgad Shaneh
2020-04-10 08:16:45 +03:00
committed by Orgad Shaneh
parent c86c4d54e2
commit 9e3bbf36f2
3 changed files with 19 additions and 19 deletions

View File

@@ -103,7 +103,7 @@ using namespace std::placeholders;
namespace Git {
namespace Internal {
using GitClientMemberFunc = void (GitClient::*)(const QString &);
using GitClientMemberFunc = void (GitClient::*)(const QString &) const;
class GitTopicCache : public Core::IVersionControl::TopicCache
{