From 7530c853c1f1e7a442aa4d7ec79d80b8f7ff2536 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Tue, 22 May 2001 03:59:43 +0000 Subject: [PATCH] changed to use vertex_property and edge_property traits classes [SVN r10185] --- include/boost/graph/graph_concepts.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/graph/graph_concepts.hpp b/include/boost/graph/graph_concepts.hpp index 627f418c..6e2d9893 100644 --- a/include/boost/graph/graph_concepts.hpp +++ b/include/boost/graph/graph_concepts.hpp @@ -314,7 +314,7 @@ namespace boost { } G g; typename graph_traits::vertex_descriptor v; - typename G::vertex_property_type vp; + typename vertex_property::type vp; }; template @@ -328,7 +328,7 @@ namespace boost { G g; std::pair p; typename graph_traits::vertex_descriptor u, v; - typename G::edge_property_type ep; + typename edge_property::type ep; }; template