diff --git a/include/boost/graph/stanford_graph.hpp b/include/boost/graph/stanford_graph.hpp index 08344541..83517f5f 100644 --- a/include/boost/graph/stanford_graph.hpp +++ b/include/boost/graph/stanford_graph.hpp @@ -412,20 +412,21 @@ namespace boost { namespace detail { template - struct choose_property_map { }; + struct sgb_choose_property_map { }; template - struct choose_property_map { + struct sgb_choose_property_map { typedef sgb_vertex_util_map type; }; template - struct choose_property_map { + struct sgb_choose_property_map { typedef sgb_edge_util_map type; }; } // namespace detail template struct property_map { typedef typename property_kind::type Kind; - typedef typename detail::choose_property_map::type type; + typedef typename detail::sgb_choose_property_map::type type; typedef type const_type; };