lemon/bits/graph_extender.h
changeset 1159 7fdaa05a69a1
parent 825 a143f19f465b
parent 1157 761fe0846f49
child 1187 4c89e925cfe2
     1.1 --- a/lemon/bits/graph_extender.h	Wed Sep 12 17:25:48 2012 +0200
     1.2 +++ b/lemon/bits/graph_extender.h	Thu Sep 13 11:56:19 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