From 911c3c3f08ac5eb8ae3063f346a5c09399eea9da Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Tue, 24 Apr 2001 02:21:09 +0000 Subject: [PATCH] removed erroneous return [SVN r9962] --- include/boost/graph/topological_sort.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/graph/topological_sort.hpp b/include/boost/graph/topological_sort.hpp index c846a04d..e68e88e2 100644 --- a/include/boost/graph/topological_sort.hpp +++ b/include/boost/graph/topological_sort.hpp @@ -78,7 +78,7 @@ namespace boost { template void topological_sort(VertexListGraph& g, OutputIterator result) { - return topological_sort(g, result, bgl_named_params(0)); + topological_sort(g, result, bgl_named_params(0)); } } // namespace boost