missing redecs

This commit is contained in:
Kai Philipp
2019-09-09 23:02:08 +02:00
parent b3674f2ea5
commit b29a8cc0e7
+3 -3
View File
@@ -404,14 +404,14 @@ SessionData::GetPlayerData()
}
void
SessionData::SetPlayerLastGames(std::vector<unsigned long> lastGames)
SessionData::SetPlayerLastGames(std::vector<long> lastGames)
{
boost::mutex::scoped_lock lock(m_dataMutex);
m_lastGames = lastGames;
}
void
SessionData::AddPlayerLastGame(unsigned long lastGame)
SessionData::AddPlayerLastGame(long lastGame)
{
boost::mutex::scoped_lock lock(m_dataMutex);
@@ -420,7 +420,7 @@ SessionData::AddPlayerLastGame(unsigned long lastGame)
// @TODO: remove overdued entries
}
std::vector<unsigned long>
std::vector<long>
SessionData::GetPlayerLastGames()
{
boost::mutex::scoped_lock lock(m_dataMutex);