2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-30 20:02:12 +00:00

changed to mutable iterator, to match return type of std::set::find, just

in case the std implementation does not provide constant to mutable
iterator conversions for std::set.


[SVN r22081]
This commit is contained in:
Jeremy Siek
2004-01-30 14:29:52 +00:00
parent ad20c88c20
commit f7fa2e2942

View File

@@ -1321,7 +1321,7 @@ namespace boost {
boost::disallow_parallel_edge_tag) const
{
bool found;
typename Config::OutEdgeList::const_iterator
typename Config::OutEdgeList::iterator
i = g.out_edge_list(u).find(StoredEdge(v)),
end = g.out_edge_list(u).end();
found = (i != end);