From 00fb03b6a03cd9b3251aade6118ba2b2f5f41d5d Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sun, 12 Jul 2015 17:25:13 +0100 Subject: [PATCH] Make Masterlist class member function private. It's never used publicly. --- src/backend/masterlist.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/backend/masterlist.h b/src/backend/masterlist.h index 01d1a5ad..ef281e27 100644 --- a/src/backend/masterlist.h +++ b/src/backend/masterlist.h @@ -38,7 +38,7 @@ namespace loot { public: bool Load(Game& game, const unsigned int language); //Handles update with load fallback. - bool Update(const Game& game); + bool Update(const boost::filesystem::path& path, const std::string& repoURL, const std::string& repoBranch); @@ -47,6 +47,7 @@ namespace loot { std::string GetDate(const boost::filesystem::path& path); private: + bool Update(const Game& game); void GetGitInfo(const boost::filesystem::path& path, bool shortID); std::string revision;