From abe493726da1636de694abeb67f204014d48ef1c Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Mon, 21 May 2001 00:47:11 +0000 Subject: [PATCH] changed VertexAndEdgeList to VertexList and EdgeList [SVN r10162] --- include/boost/graph/kruskal_min_spanning_tree.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/graph/kruskal_min_spanning_tree.hpp b/include/boost/graph/kruskal_min_spanning_tree.hpp index a9de639f..1d504207 100644 --- a/include/boost/graph/kruskal_min_spanning_tree.hpp +++ b/include/boost/graph/kruskal_min_spanning_tree.hpp @@ -65,7 +65,8 @@ namespace boost { { typedef typename graph_traits::vertex_descriptor Vertex; typedef typename graph_traits::edge_descriptor Edge; - function_requires >(); + function_requires >(); + function_requires >(); function_requires >(); function_requires >(); function_requires >();