prefix increment instead of postfix

This commit is contained in:
DennisOSRM 2012-11-19 11:45:10 +01:00
parent 2c08adab24
commit f9d336ff88

View File

@ -80,7 +80,7 @@ class DynamicGraph {
m_edges[i].target = graph[edge].target;
m_edges[i].data = graph[edge].data;
GUARANTEE(graph[edge].data.distance > 0, "edge: " << edge << "(" << graph[edge].source << "," << graph[edge].target << ")=" << graph[edge].data.distance);
edge++;
++edge;
}
}
}