From 6fc559c12c042b3f73bc99d01a5b3ca14183cd4d Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Thu, 21 Sep 2000 18:53:23 +0000 Subject: [PATCH] put_get_at moved out of detail [SVN r7759] --- include/boost/graph/stanford_graph.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/boost/graph/stanford_graph.hpp b/include/boost/graph/stanford_graph.hpp index daaa983e..855780ba 100644 --- a/include/boost/graph/stanford_graph.hpp +++ b/include/boost/graph/stanford_graph.hpp @@ -235,7 +235,7 @@ namespace boost { // Vertex ID struct sgb_vertex_id_map - : public boost::detail::put_get_at_helper + : public boost::put_get_at_helper { typedef boost::readable_property_map_tag category; typedef long value_type; @@ -251,7 +251,7 @@ namespace boost { // Vertex Name struct sgb_vertex_name_map - : public boost::detail::put_get_at_helper + : public boost::put_get_at_helper { typedef boost::readable_property_map_tag category; typedef char* value_type; @@ -330,7 +330,7 @@ namespace boost { template struct sgb_vertex_util_map - : public boost::detail::put_get_at_helper< typename Tag::type, + : public boost::put_get_at_helper< typename Tag::type, sgb_vertex_util_map > { typedef boost::lvalue_property_map_tag category; @@ -353,7 +353,7 @@ namespace boost { // Edge Length Access struct sgb_edge_length_map - : public boost::detail::put_get_at_helper + : public boost::put_get_at_helper { typedef boost::lvalue_property_map_tag category; typedef long value_type; @@ -372,7 +372,7 @@ namespace boost { template struct sgb_edge_util_map - : public boost::detail::put_get_at_helper< typename Tag::type, + : public boost::put_get_at_helper< typename Tag::type, sgb_edge_util_map > { typedef boost::lvalue_property_map_tag category;