COIN-OR::LEMON - Graph Library

Changeset 825:a143f19f465b in lemon for lemon/edge_set.h


Ignore:
Timestamp:
09/29/09 13:03:34 (15 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Phase:
public
Message:

Make some graph member functions static (#311, #68)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/edge_set.h

    r717 r825  
    868868    }
    869869
    870     void next(Arc& arc) const {
     870    static void next(Arc& arc) {
    871871      --arc.id;
    872872    }
     
    11741174    }
    11751175
    1176     void next(Arc& arc) const {
     1176    static void next(Arc& arc) {
    11771177      --arc.id;
    11781178    }
     
    11821182    }
    11831183
    1184     void next(Edge& arc) const {
     1184    static void next(Edge& arc) {
    11851185      --arc.id;
    11861186    }
Note: See TracChangeset for help on using the changeset viewer.