[Lemon-commits] [lemon_svn] deba: r2063 - hugo/trunk/lemon/bits

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:49:51 CET 2006


Author: deba
Date: Mon Jul 18 17:05:50 2005
New Revision: 2063

Modified:
   hugo/trunk/lemon/bits/iterable_graph_extender.h

Log:
Solving ambigous function call


Modified: hugo/trunk/lemon/bits/iterable_graph_extender.h
==============================================================================
--- hugo/trunk/lemon/bits/iterable_graph_extender.h	(original)
+++ hugo/trunk/lemon/bits/iterable_graph_extender.h	Mon Jul 18 17:05:50 2005
@@ -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;



More information about the Lemon-commits mailing list