std::deque is a much better fit, should have bit better performance

This commit is contained in:
Michael Cook (mackal)
2014-12-18 02:20:03 -05:00
parent fe4872c921
commit ce9bcef620
6 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -1225,7 +1225,7 @@ protected:
Map::Vertex PathingLastPosition;
int PathingLoopCount;
int PathingLastNodeVisited;
std::vector<int> Route;
std::deque<int> Route;
LOSType PathingLOSState;
Timer *PathingLOSCheckTimer;
Timer *PathingRouteUpdateTimerShort;