COIN-OR::LEMON - Graph Library

Changeset 1338:0998f70d0b2d in lemon


Ignore:
Timestamp:
04/14/15 16:14:32 (9 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Phase:
public
Message:

Clang -std=c++11 related fixes (#325)

Location:
lemon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/bits/path_dump.h

    r1270 r1338  
    6262      }
    6363
    64       operator const typename Digraph::Arc() const {
     64      operator typename Digraph::Arc() const {
    6565        return path->predMap[current];
    6666      }
  • lemon/random.h

    r1328 r1338  
    250250        current = state + length;
    251251
    252         register Word *curr = state + length - 1;
    253         register long num;
     252        Word *curr = state + length - 1;
     253        long num;
    254254
    255255        num = length - shift;
Note: See TracChangeset for help on using the changeset viewer.