diff --git a/src/net/common/sessiondata.cpp b/src/net/common/sessiondata.cpp index 41b0fe5c..f4c68b99 100644 --- a/src/net/common/sessiondata.cpp +++ b/src/net/common/sessiondata.cpp @@ -404,14 +404,14 @@ SessionData::GetPlayerData() } void -SessionData::SetPlayerLastGames(std::vector lastGames) +SessionData::SetPlayerLastGames(std::vector 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 +std::vector SessionData::GetPlayerLastGames() { boost::mutex::scoped_lock lock(m_dataMutex);