[Server] Fix Cell iterators

pull/163/head
Koncord 8 years ago
parent 67b67ce1c4
commit 443c0ed309

@ -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();
}

@ -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);

Loading…
Cancel
Save