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)