2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-26 16:52:12 +00:00

Merged change r75431 from trunk; refs #6112

[SVN r75471]
This commit is contained in:
Jeremiah Willcock
2011-11-13 06:10:55 +00:00
parent 3a546c9418
commit a88250f76f
39 changed files with 120 additions and 63 deletions

View File

@@ -94,7 +94,7 @@ int main(int argc, char** argv)
property_map<graph, edge_index_t>::type e_index = get(edge_index, g);
graph_traits<graph>::edges_size_type edge_count = 0;
graph_traits<graph>::edge_iterator ei, ei_end;
for(tie(ei, ei_end) = edges(g); ei != ei_end; ++ei)
for(boost::tie(ei, ei_end) = edges(g); ei != ei_end; ++ei)
put(e_index, *ei, edge_count++);