Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Generals/Code/GameEngine/Include/Common/PlayerTemplate.h
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ class PlayerTemplateStore : public SubsystemInterface

private:

typedef std::vector<PlayerTemplate> PlayerTemplateVector;
typedef std::deque<PlayerTemplate> PlayerTemplateVector;

PlayerTemplateVector m_playerTemplates;
};
Expand Down
1 change: 1 addition & 0 deletions Generals/Code/GameEngine/Include/Common/STLTypedefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ enum DrawableID CPP_11(: Int);

#include <algorithm>
#include <bitset>
#include <deque>
#include <Utility/hash_map_adapter.h>
#include <list>
#include <map>
Expand Down
2 changes: 1 addition & 1 deletion GeneralsMD/Code/GameEngine/Include/Common/PlayerTemplate.h
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ class PlayerTemplateStore : public SubsystemInterface

private:

typedef std::vector<PlayerTemplate> PlayerTemplateVector;
typedef std::deque<PlayerTemplate> PlayerTemplateVector;

PlayerTemplateVector m_playerTemplates;
};
Expand Down
1 change: 1 addition & 0 deletions GeneralsMD/Code/GameEngine/Include/Common/STLTypedefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ enum DrawableID CPP_11(: Int);

#include <algorithm>
#include <bitset>
#include <deque>
#include <Utility/hash_map_adapter.h>
#include <list>
#include <map>
Expand Down
Loading