Linkgraph: Replace three uses of std::list with std::deque/vector.

This commit is contained in:
Jonathan G Rennison
2015-11-26 01:02:52 +00:00
parent 564744d427
commit 3a28be7841
3 changed files with 6 additions and 6 deletions

View File

@@ -14,7 +14,7 @@
#include "../cargo_type.h"
#include "../vehicle_base.h"
#include <list>
#include <deque>
#include <map>
#include <set>
@@ -79,7 +79,7 @@ protected:
bool operator<(const Hop &other) const;
};
typedef std::list<RefitDesc> RefitList;
typedef std::deque<RefitDesc> RefitList;
typedef std::map<CargoID, uint> CapacitiesMap;
typedef std::set<Hop> HopSet;