missing redecs
This commit is contained in:
@@ -404,14 +404,14 @@ SessionData::GetPlayerData()
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
SessionData::SetPlayerLastGames(std::vector<unsigned long> lastGames)
|
SessionData::SetPlayerLastGames(std::vector<long> lastGames)
|
||||||
{
|
{
|
||||||
boost::mutex::scoped_lock lock(m_dataMutex);
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
||||||
m_lastGames = lastGames;
|
m_lastGames = lastGames;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
SessionData::AddPlayerLastGame(unsigned long lastGame)
|
SessionData::AddPlayerLastGame(long lastGame)
|
||||||
{
|
{
|
||||||
boost::mutex::scoped_lock lock(m_dataMutex);
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
||||||
|
|
||||||
@@ -420,7 +420,7 @@ SessionData::AddPlayerLastGame(unsigned long lastGame)
|
|||||||
// @TODO: remove overdued entries
|
// @TODO: remove overdued entries
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<unsigned long>
|
std::vector<long>
|
||||||
SessionData::GetPlayerLastGames()
|
SessionData::GetPlayerLastGames()
|
||||||
{
|
{
|
||||||
boost::mutex::scoped_lock lock(m_dataMutex);
|
boost::mutex::scoped_lock lock(m_dataMutex);
|
||||||
|
|||||||
Reference in New Issue
Block a user