2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-13 12:32:09 +00:00

fixed search-replace error that munged the name of sgb_vertex_name_map

[SVN r10256]
This commit is contained in:
Jeremy Siek
2001-06-02 17:10:00 +00:00
parent 475917ad0c
commit 36e574eeaa

View File

@@ -274,8 +274,8 @@ namespace boost {
}
// Vertex Name
class sgb_vertex_name_t_map
: public boost::put_get_helper<char*, sgb_vertex_name_t_map>
class sgb_vertex_name_map
: public boost::put_get_helper<char*, sgb_vertex_name_map>
{
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<sgb_graph_ptr, vertex_name_t> {
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<sgb_const_graph_ptr, vertex_name_t> {
typedef sgb_vertex_name_t_map const_type;
typedef sgb_vertex_name_map const_type;
};
#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)