[Lemon-commits] Alpar Juttner: Fix in lp_base.cc targeting AIX/x...
Lemon HG
hg at lemon.cs.elte.hu
Fri Nov 20 14:13:00 CET 2009
details: http://lemon.cs.elte.hu/hg/lemon/rev/bc0a130bbb46
changeset: 557:bc0a130bbb46
user: Alpar Juttner <alpar [at] cs.elte.hu>
date: Fri Feb 13 14:56:27 2009 +0000
description:
Fix in lp_base.cc targeting AIX/xlC compatibility
diffstat:
lemon/lp_base.cc | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diffs (15 lines):
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 <lemon/lp_base.h>
namespace lemon {
- const LpBase::Value LpBase::INF = std::numeric_limits<Value>::infinity();
- const LpBase::Value LpBase::NaN = std::numeric_limits<Value>::quiet_NaN();
+ const LpBase::Value LpBase::INF =
+ std::numeric_limits<LpBase::Value>::infinity();
+ const LpBase::Value LpBase::NaN =
+ std::numeric_limits<LpBase::Value>::quiet_NaN();
} //namespace lemon
More information about the Lemon-commits
mailing list