From 0e295d01c3643534989960699ed143fb90b95be1 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Wed, 8 Jun 2005 14:05:08 +0000 Subject: [PATCH] Fix depth_first_search root_vertex for Digraph [SVN r29476] --- src/python/depth_first_search.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/depth_first_search.cpp b/src/python/depth_first_search.cpp index a9b6c34c..84f2d66b 100644 --- a/src/python/depth_first_search.cpp +++ b/src/python/depth_first_search.cpp @@ -138,7 +138,7 @@ void export_depth_first_search() def("depth_first_search", &depth_first_search, (arg("graph"), - arg("root_vertex") = graph_traits::null_vertex(), + arg("root_vertex") = graph_traits::null_vertex(), arg("visitor") = dfs_visitor::default_arg(), arg("color_map") = (vector_property_map*)0));