Ticket #4190: graph.patch
File graph.patch, 535 bytes (added by , 12 years ago) |
---|
-
libs/graph/example/helper.hpp
24 24 Vertex v; 25 25 Iterator iter; 26 26 bool inserted; 27 tie(iter, inserted) = vm.insert(make_pair(name, Vertex()));27 boost::tie(iter, inserted) = vm.insert(make_pair(name, Vertex())); 28 28 if(inserted) { 29 29 // The name was unique so we need to add a vertex to the graph 30 30 v = add_vertex(g);