2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-30 07:52:10 +00:00

adjacency_list.hpp:

- Add some more qualification to help VC7 along...


[SVN r23215]
This commit is contained in:
Douglas Gregor
2004-06-27 19:15:55 +00:00
parent eedac55a7d
commit 73ad3cb092

View File

@@ -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