COIN-OR::LEMON - Graph Library

Changes between Initial Version and Version 1 of Ticket #458


Ignore:
Timestamp:
02/25/13 18:13:09 (11 years ago)
Author:
Alpar Juttner
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #458 – Description

    initial v1  
    55So 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:
    66
     7{{{
    78526c526
    89<       return e.direction ? this->u(e) : this->v(e);
     
    1314---
    1415>       return e.direction ? v(e) : u(e);
     16}}}