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

fixed bug in remove_edge(e, g) for bidirectional graphs.

The problem was that the edge property was not removed from the edge list


[SVN r23288]
This commit is contained in:
Jeremy Siek
2004-06-30 16:09:17 +00:00
parent 4c469946fe
commit 00a2844d66

View File

@@ -1067,6 +1067,7 @@ namespace boost {
PType& p = *(PType*)e.get_property();
detail::remove_directed_edge_dispatch(e, oel, p);
detail::remove_directed_edge_dispatch(e, iel, p);
detail::remove_directed_edge_dispatch(e, g.m_edges, p);
}
inline void