From 73ad3cb092018c5eab81058bcccba8a3a67de62f Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Sun, 27 Jun 2004 19:15:55 +0000 Subject: [PATCH] adjacency_list.hpp: - Add some more qualification to help VC7 along... [SVN r23215] --- include/boost/graph/detail/adjacency_list.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/graph/detail/adjacency_list.hpp b/include/boost/graph/detail/adjacency_list.hpp index 504111f6..5373b792 100644 --- a/include/boost/graph/detail/adjacency_list.hpp +++ b/include/boost/graph/detail/adjacency_list.hpp @@ -1065,8 +1065,8 @@ namespace boost { typename Config::InEdgeList& iel = in_edge_list(g, target(e, g)); typedef typename Config::OutEdgeList::value_type::property_type PType; PType& p = *(PType*)e.get_property(); - remove_directed_edge_dispatch(e, oel, p); - remove_directed_edge_dispatch(e, iel, p); + detail::remove_directed_edge_dispatch(e, oel, p); + detail::remove_directed_edge_dispatch(e, iel, p); } inline void