COIN-OR::LEMON - Graph Library

Changeset 778:a143f19f465b in lemon-main for lemon/smart_graph.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/smart_graph.h

    r617 r778  
    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.