id summary reporter owner description type status milestone component version severity resolution keywords cc 4190 Unqualified 'tie' in libs/graph/example/helper.hpp anonymous Andrew Sutton "There is an unqualified occurrence of 'tie' in libs/graph/example/helper.cpp which prevents compiling on clang++. The following trivial patch fixes it. Index: libs/graph/example/helper.hpp =================================================================== --- libs/graph/example/helper.hpp (revision 61786) +++ libs/graph/example/helper.hpp (working copy) @@ -24,7 +24,7 @@ Vertex v; Iterator iter; bool inserted; - tie(iter, inserted) = vm.insert(make_pair(name, Vertex())); + boost::tie(iter, inserted) = vm.insert(make_pair(name, Vertex())); if(inserted) { // The name was unique so we need to add a vertex to the graph v = add_vertex(g); " Bugs closed Boost 1.43.0 graph Boost Development Trunk Problem fixed chris@…