Skip to content
Snippets Groups Projects
Commit d7481e9c authored by Romain BERNARD's avatar Romain BERNARD Committed by Romain BERNARD
Browse files

fix oob

parent 25426b5d
No related branches found
No related tags found
1 merge request!1Transit algorithm implementation
......@@ -16,7 +16,7 @@ public:
explicit TransitShortestPath(const TransitAlgorithmState& state) {
_arrivalTime = state.getInstant();
std::move(state.getConnections().begin(), state.getConnections().end(),_keyPoints.begin());
std::move(state.getConnections().begin(), state.getConnections().end() - 1,_keyPoints.begin());
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment