(svn r27612) -Codechange: Replace three uses of std::list with std::queue/vector. (JGR)

This commit is contained in:
fonsinchen
2016-07-10 11:57:16 +00:00
parent bcdae9a093
commit e2426b22fa
3 changed files with 13 additions and 13 deletions

View File

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