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
@@ -5714,7 +5714,7 @@ void Client::Handle_OP_FindPersonRequest(const EQApplicationPacket *app)
}
else
{
std::vector<int> pathlist = zone->pathing->FindRoute(Start, End);
std::deque<int> pathlist = zone->pathing->FindRoute(Start, End);
if (pathlist.size() == 0)
{