Changes between Initial Version and Version 1 of Ticket #458
- Timestamp:
- 02/25/13 18:13:09 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #458 – Description
initial v1 5 5 So there are at least two places in lemon code where this-> keyword is missing. In /include/lemon/bits/edge_set_extender.h (probably more). Patch that fixed my problem is following: 6 6 7 {{{ 7 8 526c526 8 9 < return e.direction ? this->u(e) : this->v(e); … … 13 14 --- 14 15 > return e.direction ? v(e) : u(e); 16 }}}