# HG changeset patch # User deba # Date 1121699150 0 # Node ID 16d316199cf661358f13c876613f2b5367ccda03 # Parent 0853ed07a6779999a70c05b525ee8a51686f11c5 Solving ambigous function call diff -r 0853ed07a677 -r 16d316199cf6 lemon/bits/iterable_graph_extender.h --- a/lemon/bits/iterable_graph_extender.h Mon Jul 18 15:03:55 2005 +0000 +++ b/lemon/bits/iterable_graph_extender.h Mon Jul 18 15:05:50 2005 +0000 @@ -124,7 +124,7 @@ /// /// \todo Document in the concept! Node baseNode(const OutEdgeIt &e) const { - return source(e); + return Parent::source((Edge)e); } /// Running node of the iterator /// @@ -133,7 +133,7 @@ /// /// \todo Document in the concept! Node runningNode(const OutEdgeIt &e) const { - return target(e); + return Parent::target((Edge)e); } /// Base node of the iterator @@ -142,7 +142,7 @@ /// /// \todo Document in the concept! Node baseNode(const InEdgeIt &e) const { - return target(e); + return Parent::target((Edge)e); } /// Running node of the iterator /// @@ -151,7 +151,7 @@ /// /// \todo Document in the concept! Node runningNode(const InEdgeIt &e) const { - return source(e); + return Parent::source((Edge)e); } using Parent::first;