2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-27 17:12:11 +00:00

Fixed typo as suggested by Shaun Jackman

[SVN r69021]
This commit is contained in:
Jeremiah Willcock
2011-02-19 04:17:48 +00:00
parent d44293d8a8
commit 66cd415568

View File

@@ -99,7 +99,7 @@ transitive_reduction(const Graph& g, GraphTR& tr,
{
//and run through all vertices in topological order
typename std::vector<Vertex>::reverse_iterator
rit = topo_order.rbegin();
rit = topo_order.rbegin(),
rend = topo_order.rend();
for(; rit != rend; ++rit ) {
//looking if they are successors of *it