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

fix state = operator to properly clear connections list

parent f3f54c65
No related branches found
No related tags found
1 merge request!1Transit algorithm implementation
......@@ -143,6 +143,7 @@ public:
_instant = baseState.getInstant();
_passageIndex = baseState.getPassageIndex();
//Copy old connections
_connections.clear(); //TODO: see with HT if there's a better way to do this for an assignment operator
for(auto& lineStop : baseState.getConnections()) {
_connections.emplace_back(lineStop);
}
......
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