Ticket #4190: graph.patch

File graph.patch, 535 bytes (added by Christopher Jefferson <chris@…>, 12 years ago)

Patch

  • libs/graph/example/helper.hpp

     
    2424    Vertex v;
    2525    Iterator iter;
    2626    bool inserted;
    27     tie(iter, inserted) = vm.insert(make_pair(name, Vertex()));
     27    boost::tie(iter, inserted) = vm.insert(make_pair(name, Vertex()));
    2828    if(inserted) {
    2929        // The name was unique so we need to add a vertex to the graph
    3030        v = add_vertex(g);