summaryrefslogtreecommitdiff
path: root/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'game.h')
-rw-r--r--game.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/game.h b/game.h
index 7cf5708..98031f1 100644
--- a/game.h
+++ b/game.h
@@ -610,7 +610,7 @@ inline void GamePosition::setExplanatoryNote(const UVString &explanatoryNote)
}
// simple modifiable list of positions
-typedef vector<GamePosition> PositionList;
+typedef std::vector<GamePosition> PositionList;
class Game;
@@ -836,7 +836,7 @@ public:
protected:
History m_positions;
- typedef map<int, ComputerPlayer *> ComputerPlayerMap;
+ typedef std::map<int, ComputerPlayer *> ComputerPlayerMap;
ComputerPlayer *m_defaultComputerPlayer;
ComputerPlayerMap m_computerPlayers;