Added const to getter.

This commit is contained in:
Dmitry Yunitsky 2016-06-01 20:51:20 +03:00 committed by Vladimir Byko-Ianko
parent a760d64d69
commit 22fa820501
2 changed files with 2 additions and 2 deletions

View file

@ -62,7 +62,7 @@ bool UserStats::GetRank(int32_t & rank) const
return true;
}
bool UserStats::GetLevelUpRequiredFeat(string & levelUpFeat)
bool UserStats::GetLevelUpRequiredFeat(string & levelUpFeat) const
{
if (m_levelUpRequiredFeat.empty())
return false;

View file

@ -21,7 +21,7 @@ public:
bool GetChangesCount(int32_t & changesCount) const;
bool GetRank(int32_t & rank) const;
bool GetLevelUpRequiredFeat(string & levelUpFeat);
bool GetLevelUpRequiredFeat(string & levelUpFeat) const;
time_t GetLastUpdate() const { return m_updateTime; }