COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/smart_graph.h

    r783 r827  
    498498    }
    499499
    500     void next(Node& node) const {
     500    static void next(Node& node) {
    501501      --node._id;
    502502    }
     
    506506    }
    507507
    508     void next(Arc& arc) const {
     508    static void next(Arc& arc) {
    509509      --arc._id;
    510510    }
     
    514514    }
    515515
    516     void next(Edge& arc) const {
     516    static void next(Edge& arc) {
    517517      --arc._id;
    518518    }
Note: See TracChangeset for help on using the changeset viewer.