Fix in lp_base.cc targeting AIX/xlC compatibility
authorAlpar Juttner <alpar@cs.elte.hu>
Fri, 13 Feb 2009 14:56:27 +0000
changeset 486bc0a130bbb46
parent 485 c5919679af17
child 487 06787db0ef5f
Fix in lp_base.cc targeting AIX/xlC compatibility
lemon/lp_base.cc
     1.1 --- a/lemon/lp_base.cc	Tue Feb 10 17:37:59 2009 +0000
     1.2 +++ b/lemon/lp_base.cc	Fri Feb 13 14:56:27 2009 +0000
     1.3 @@ -22,7 +22,9 @@
     1.4  #include <lemon/lp_base.h>
     1.5  namespace lemon {
     1.6  
     1.7 -  const LpBase::Value LpBase::INF = std::numeric_limits<Value>::infinity();
     1.8 -  const LpBase::Value LpBase::NaN = std::numeric_limits<Value>::quiet_NaN();
     1.9 +  const LpBase::Value LpBase::INF =
    1.10 +    std::numeric_limits<LpBase::Value>::infinity();
    1.11 +  const LpBase::Value LpBase::NaN =
    1.12 +    std::numeric_limits<LpBase::Value>::quiet_NaN();
    1.13  
    1.14  } //namespace lemon