From b29a8cc0e736ae0ba4765185419dc5752f2edb45 Mon Sep 17 00:00:00 2001 From: Kai Philipp Date: Mon, 9 Sep 2019 23:02:08 +0200 Subject: [PATCH] missing redecs --- src/net/common/sessiondata.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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);