[Lemon-commits] [lemon_svn] klao: r1657 - hugo/trunk/src/lemon

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


Author: klao
Date: Mon Mar 21 10:27:48 2005
New Revision: 1657

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

Log:
Fixes for MS VC++ (contributed by Janos Tapolcai)


Modified: hugo/trunk/src/lemon/iterable_graph_extender.h
==============================================================================
--- hugo/trunk/src/lemon/iterable_graph_extender.h	(original)
+++ hugo/trunk/src/lemon/iterable_graph_extender.h	Mon Mar 21 10:27:48 2005
@@ -150,14 +150,14 @@
 
   private:
 
-    /// \todo When (and if) we change the iterators concept to use operator*,
-    /// then the following shadowed methods will become superfluous.
-    /// But for now these are important safety measures.
-
-    void first(NodeIt &) const;
-    void first(EdgeIt &) const;
-    void first(OutEdgeIt &) const;
-    void first(InEdgeIt &) const;
+    // /// \todo When (and if) we change the iterators concept to use operator*,
+    // /// then the following shadowed methods will become superfluous.
+    // /// But for now these are important safety measures.
+
+    // void first(NodeIt &) const;
+    // void first(EdgeIt &) const;
+    // void first(OutEdgeIt &) const;
+    // void first(InEdgeIt &) const;
 
   };
 
@@ -176,7 +176,7 @@
 
     typedef typename Parent::UndirEdge UndirEdge;
 
-    class UndirEdgeIt : public UndirEdge { 
+    class UndirEdgeIt : public Parent::UndirEdge { 
       const Graph* graph;
     public:
 
@@ -198,7 +198,7 @@
 
     };
 
-    class IncEdgeIt : public UndirEdge { 
+    class IncEdgeIt : public Parent::UndirEdge { 
       const Graph* graph;
       bool forward;
       friend class IterableUndirGraphExtender;



More information about the Lemon-commits mailing list