Ticket #9127: lazy_add_vertex.patch

File lazy_add_vertex.patch, 612 bytes (added by Chris Bowen <lost.era@…>, 9 years ago)
  • boost/graph/distributed/named_graph.hpp

     
    344344  /// Transfer responsibility for adding the vertex from the source of
    345345  /// the copy to the newly-constructed opbject.
    346346  lazy_add_vertex(const lazy_add_vertex& other)
    347     : self(self), name(other.name), committed(other.committed)
     347    : self(other.self), name(other.name), committed(other.committed)
    348348  {
    349349    other.committed = true;
    350350  }