Changeset 1262:dd1443e4a34c in lemon for lemon/concepts/bpgraph.h
- Timestamp:
- 08/07/13 07:08:38 (10 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/concepts/bpgraph.h
r1217 r1262 524 524 /// Sets the iterator to the first arc of the given graph. 525 525 /// 526 explicit ArcIt(const BpGraph &g) { ignore_unused_variable_warning(g); } 526 explicit ArcIt(const BpGraph &g) 527 { 528 ::lemon::ignore_unused_variable_warning(g); 529 } 527 530 /// Sets the iterator to the given arc. 528 531 … … 570 573 /// 571 574 OutArcIt(const BpGraph& n, const Node& g) { 572 ignore_unused_variable_warning(n);573 ignore_unused_variable_warning(g);575 ::lemon::ignore_unused_variable_warning(n); 576 ::lemon::ignore_unused_variable_warning(g); 574 577 } 575 578 /// Sets the iterator to the given arc. … … 618 621 /// 619 622 InArcIt(const BpGraph& g, const Node& n) { 620 ignore_unused_variable_warning(n);621 ignore_unused_variable_warning(g);623 ::lemon::ignore_unused_variable_warning(n); 624 ::lemon::ignore_unused_variable_warning(g); 622 625 } 623 626 /// Sets the iterator to the given arc.
Note: See TracChangeset
for help on using the changeset viewer.