COIN-OR::LEMON - Graph Library

Changeset 1230:daf41fe81728 in lemon-0.x


Ignore:
Timestamp:
03/21/05 10:27:48 (19 years ago)
Author:
Mihaly Barasz
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1657
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/lemon/iterable_graph_extender.h

    r1158 r1230  
    151151  private:
    152152
    153     /// \todo When (and if) we change the iterators concept to use operator*,
    154     /// then the following shadowed methods will become superfluous.
    155     /// But for now these are important safety measures.
    156 
    157     void first(NodeIt &) const;
    158     void first(EdgeIt &) const;
    159     void first(OutEdgeIt &) const;
    160     void first(InEdgeIt &) const;
     153    // /// \todo When (and if) we change the iterators concept to use operator*,
     154    // /// then the following shadowed methods will become superfluous.
     155    // /// But for now these are important safety measures.
     156
     157    // void first(NodeIt &) const;
     158    // void first(EdgeIt &) const;
     159    // void first(OutEdgeIt &) const;
     160    // void first(InEdgeIt &) const;
    161161
    162162  };
     
    177177    typedef typename Parent::UndirEdge UndirEdge;
    178178
    179     class UndirEdgeIt : public UndirEdge {
     179    class UndirEdgeIt : public Parent::UndirEdge {
    180180      const Graph* graph;
    181181    public:
     
    199199    };
    200200
    201     class IncEdgeIt : public UndirEdge {
     201    class IncEdgeIt : public Parent::UndirEdge {
    202202      const Graph* graph;
    203203      bool forward;
Note: See TracChangeset for help on using the changeset viewer.