# HG changeset patch # User Alpar Juttner # Date 2009-02-13 15:56:27 # Node ID bc0a130bbb46a89213c6e74e5d1f23b892c32ab3 # Parent c5919679af17b5ee951659b5ec6b619a66e9024f Fix in lp_base.cc targeting AIX/xlC compatibility diff --git a/lemon/lp_base.cc b/lemon/lp_base.cc --- a/lemon/lp_base.cc +++ b/lemon/lp_base.cc @@ -22,7 +22,9 @@ #include namespace lemon { - const LpBase::Value LpBase::INF = std::numeric_limits::infinity(); - const LpBase::Value LpBase::NaN = std::numeric_limits::quiet_NaN(); + const LpBase::Value LpBase::INF = + std::numeric_limits::infinity(); + const LpBase::Value LpBase::NaN = + std::numeric_limits::quiet_NaN(); } //namespace lemon