From dc4101b2fdd70ccfdf3e092db59b4a84a8380267 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Mon, 23 Apr 2001 17:48:33 +0000 Subject: [PATCH] resolved name conflict [SVN r9915] --- include/boost/graph/stanford_graph.hpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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; };