lemon/adaptors.h
branch1.1
changeset 1158 8d2e55fac752
parent 1081 f1398882a928
parent 1157 761fe0846f49
     1.1 --- a/lemon/adaptors.h	Wed Sep 12 17:51:20 2012 +0200
     1.2 +++ b/lemon/adaptors.h	Thu Sep 13 11:52:50 2012 +0200
     1.3 @@ -1364,7 +1364,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 @@ -2261,7 +2261,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