Remove superflous sentinel in DynamicGraph, fixes #4738

This commit is contained in:
Patrick Niklaus
2017-12-15 23:23:38 +00:00
committed by Patrick Niklaus
parent b99d3a0a69
commit ccfbce5300
3 changed files with 10 additions and 5 deletions
+1 -1
View File
@@ -384,7 +384,7 @@ void RenumberData(std::vector<RemainingNodeData> &remaining_nodes,
// we need to make a copy here because we are going to modify it
auto to_orig = new_to_old_node_id;
auto new_node_id = 0;
auto new_node_id = 0u;
// All remaining nodes get the low IDs
for (auto &remaining : remaining_nodes)