lemon/bits/graph_extender.h
branch1.1
changeset 793 8d2e55fac752
parent 686 a27356ceb5bd
     1.1 --- a/lemon/bits/graph_extender.h	Wed Sep 12 17:51:20 2012 +0200
     1.2 +++ b/lemon/bits/graph_extender.h	Thu Sep 13 11:52:50 2012 +0200
     1.3 @@ -587,13 +587,13 @@
     1.4      //
     1.5      // Returns the base node of the iterator
     1.6      Node baseNode(const IncEdgeIt &edge) const {
     1.7 -      return edge._direction ? u(edge) : v(edge);
     1.8 +      return edge._direction ? this->u(edge) : this->v(edge);
     1.9      }
    1.10      // Running node of the iterator
    1.11      //
    1.12      // Returns the running node of the iterator
    1.13      Node runningNode(const IncEdgeIt &edge) const {
    1.14 -      return edge._direction ? v(edge) : u(edge);
    1.15 +      return edge._direction ? this->v(edge) : this->u(edge);
    1.16      }
    1.17  
    1.18      // Mappable extension