# HG changeset patch # User klao # Date 1111397268 0 # Node ID daf41fe8172896727d42955566ca9bc95739ea0b # Parent aa65e46aebc3b0f8abfe0862f2fb19e0bc180eca Fixes for MS VC++ (contributed by Janos Tapolcai) diff -r aa65e46aebc3 -r daf41fe81728 src/lemon/iterable_graph_extender.h --- a/src/lemon/iterable_graph_extender.h Mon Mar 21 07:47:00 2005 +0000 +++ b/src/lemon/iterable_graph_extender.h Mon Mar 21 09:27:48 2005 +0000 @@ -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. + // /// \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; + // 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;