2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-26 04:42:16 +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

@@ -34,9 +34,9 @@ main()
property_map < adjacency_list <>, vertex_index_t >::type
index_map = get(vertex_index, g);
for (tie(i, end) = vertices(g); i != end; ++i) {
for (boost::tie(i, end) = vertices(g); i != end; ++i) {
std::cout << name[get(index_map, *i)];
tie(ai, a_end) = adjacent_vertices(*i, g);
boost::tie(ai, a_end) = adjacent_vertices(*i, g);
if (ai == a_end)
std::cout << " has no children";
else