2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-01 08:32:11 +00:00

Added boost:: to all uses of tie() to disambiguate from std version

[SVN r63244]
This commit is contained in:
Jeremiah Willcock
2010-06-22 18:02:43 +00:00
parent 6e72c1f445
commit 753900a4a0
152 changed files with 614 additions and 614 deletions

View File

@@ -168,7 +168,7 @@ private:
any edge;
bool added;
tie(edge, added) = m_g.do_add_edge(source, target);
boost::tie(edge, added) = m_g.do_add_edge(source, target);
if (!added) {
BOOST_THROW_EXCEPTION(bad_parallel_edge(u, v));
}