From 36e574eeaacc9bf735e833d94755a18184348678 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Sat, 2 Jun 2001 17:10:00 +0000 Subject: [PATCH] fixed search-replace error that munged the name of sgb_vertex_name_map [SVN r10256] --- include/boost/graph/stanford_graph.hpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/include/boost/graph/stanford_graph.hpp b/include/boost/graph/stanford_graph.hpp index 1049202c..b3e24bed 100644 --- a/include/boost/graph/stanford_graph.hpp +++ b/include/boost/graph/stanford_graph.hpp @@ -274,8 +274,8 @@ namespace boost { } // Vertex Name - class sgb_vertex_name_t_map - : public boost::put_get_helper + class sgb_vertex_name_map + : public boost::put_get_helper { public: typedef boost::readable_property_map_tag category; @@ -284,8 +284,8 @@ namespace boost { typedef Vertex* key_type; char* operator[](Vertex* v) const { return v->name; } }; - inline sgb_vertex_name_t_map get(vertex_name_t, sgb_graph_ptr) { - return sgb_vertex_name_t_map(); + inline sgb_vertex_name_map get(vertex_name_t, sgb_graph_ptr) { + return sgb_vertex_name_map(); } // Vertex Property Tags @@ -439,8 +439,8 @@ namespace boost { }; template <> struct property_map { - typedef sgb_vertex_name_t_map type; - typedef sgb_vertex_name_t_map const_type; + typedef sgb_vertex_name_map type; + typedef sgb_vertex_name_map const_type; }; template <> @@ -453,7 +453,7 @@ namespace boost { }; template <> struct property_map { - typedef sgb_vertex_name_t_map const_type; + typedef sgb_vertex_name_map const_type; }; #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)