COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/smart_graph.h

    r664 r825  
    509509    }
    510510
    511     void next(Node& node) const {
     511    static void next(Node& node) {
    512512      --node._id;
    513513    }
     
    517517    }
    518518
    519     void next(Arc& arc) const {
     519    static void next(Arc& arc) {
    520520      --arc._id;
    521521    }
     
    525525    }
    526526
    527     void next(Edge& arc) const {
     527    static void next(Edge& arc) {
    528528      --arc._id;
    529529    }
Note: See TracChangeset for help on using the changeset viewer.