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

removed erroneous return

[SVN r9962]
This commit is contained in:
Jeremy Siek
2001-04-24 02:21:09 +00:00
parent 5e9b1cd0d8
commit 911c3c3f08

View File

@@ -78,7 +78,7 @@ namespace boost {
template <class VertexListGraph, class OutputIterator>
void topological_sort(VertexListGraph& g, OutputIterator result)
{
return topological_sort(g, result, bgl_named_params<int, int>(0));
topological_sort(g, result, bgl_named_params<int, int>(0));
}
} // namespace boost