lemon/adaptors.h
changeset 964 7fdaa05a69a1
parent 877 141f9c0db4a3
parent 963 761fe0846f49
     1.1 --- a/lemon/adaptors.h	Wed Sep 12 17:25:48 2012 +0200
     1.2 +++ b/lemon/adaptors.h	Thu Sep 13 11:56:19 2012 +0200
     1.3 @@ -1371,7 +1371,7 @@
     1.4      /// Creates a subgraph for the given graph with the given node
     1.5      /// and edge filter maps.
     1.6      SubGraph(GR& graph, NF& node_filter, EF& edge_filter) {
     1.7 -      initialize(graph, node_filter, edge_filter);
     1.8 +      this->initialize(graph, node_filter, edge_filter);
     1.9      }
    1.10  
    1.11      /// \brief Sets the status of the given node
    1.12 @@ -2277,7 +2277,7 @@
    1.13      ///
    1.14      /// Creates an undirected graph from the given digraph.
    1.15      Undirector(DGR& digraph) {
    1.16 -      initialize(digraph);
    1.17 +      this->initialize(digraph);
    1.18      }
    1.19  
    1.20      /// \brief Arc map combined from two original arc maps