another bugfix array declaration

This commit is contained in:
Kai Philipp
2019-09-09 20:01:20 +02:00
parent 16cff5612e
commit a3337dd869
2 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -39,7 +39,7 @@
#include <gsasl.h>
// #include <ctime> // @TODO: remove if really not necessary
// #include <array> // same here
// #include <Array> // same here
using namespace std;
using boost::asio::ip::tcp;
@@ -402,13 +402,13 @@ SessionData::GetPlayerData()
}
void
SessionData::SetPlayerLastGames(array<long, 25> lastGames)
SessionData::SetPlayerLastGames(Array<long, 25> lastGames)
{
boost::mutex::scoped_lock lock(m_dataMutex);
m_lastGames = player;
}
array<long, 25>
Array<long, 25>
SessionData::GetPlayerLastGames()
{
boost::mutex::scoped_lock lock(m_dataMutex);