COIN-OR::LEMON - Graph Library

Changeset 2618:6aa6fcaeaea5 in lemon-0.x for lemon/bits


Ignore:
Timestamp:
09/19/08 17:14:41 (16 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3503
Message:

G++-4.3 compatibility changes

Location:
lemon/bits
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/bits/bezier.h

    r2553 r2618  
    3535class BezierBase {
    3636public:
    37   typedef Point<double> Point;
     37  typedef lemon::dim2::Point<double> Point;
    3838protected:
    3939  static Point conv(Point x,Point y,double t) {return (1-t)*x+t*y;}
  • lemon/bits/traits.h

    r2553 r2618  
    225225    typedef typename Map::Value Value;
    226226
    227     typedef const Value ConstReturnValue;
    228     typedef const Value ReturnValue;
     227    typedef Value ConstReturnValue;
     228    typedef Value ReturnValue;
    229229  };
    230230
     
    253253    typedef typename MatrixMap::Value Value;
    254254
    255     typedef const Value ConstReturnValue;
    256     typedef const Value ReturnValue;
     255    typedef Value ConstReturnValue;
     256    typedef Value ReturnValue;
    257257  };
    258258
Note: See TracChangeset for help on using the changeset viewer.