1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 18:19:55 +00:00

[Server] Fix Cell iterators

This commit is contained in:
Koncord 2017-02-22 12:03:03 +08:00
parent 67b67ce1c4
commit 443c0ed309
2 changed files with 6 additions and 6 deletions

View file

@ -212,12 +212,12 @@ Cell::Cell(ESM::Cell cell): cell(cell)
}
Cell::Iterator Cell::begin()
Cell::Iterator Cell::begin() const
{
return players.begin();
}
Cell::Iterator Cell::end()
Cell::Iterator Cell::end() const
{
return players.end();
}

View file

@ -53,10 +53,10 @@ class Cell
public:
Cell(ESM::Cell cell);
typedef std::deque<Player*> TPlayers;
typedef TPlayers::iterator Iterator;
Iterator begin();
Iterator end();
typedef TPlayers::const_iterator Iterator;
Iterator begin() const;
Iterator end() const;
void addPlayer(Player *player);
void removePlayer(Player *player);