Changeset 825:a143f19f465b in lemon for lemon/smart_graph.h
- Timestamp:
- 09/29/09 13:03:34 (15 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/smart_graph.h
r664 r825 509 509 } 510 510 511 void next(Node& node) const{511 static void next(Node& node) { 512 512 --node._id; 513 513 } … … 517 517 } 518 518 519 void next(Arc& arc) const{519 static void next(Arc& arc) { 520 520 --arc._id; 521 521 } … … 525 525 } 526 526 527 void next(Edge& arc) const{527 static void next(Edge& arc) { 528 528 --arc._id; 529 529 }
Note: See TracChangeset
for help on using the changeset viewer.