You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change the container which was used for keeping navigating goals from std::vector into std::deque as it is being used as a queue(FIFO), but removing the first element in a vector is costly as all elements needs to be pushed forward.
#2356