diff -r 9e80927b7921 -r ef13597d249a lemon/mip_cplex.cc --- a/lemon/mip_cplex.cc Mon Mar 26 10:44:03 2007 +0000 +++ b/lemon/mip_cplex.cc Tue Mar 27 09:23:33 2007 +0000 @@ -61,7 +61,7 @@ MipCplex::ColTypes MipCplex::_colType(int i) const { char ctype[1]; - status = CPXgetctype (env, lp, ctype, i, i); + CPXgetctype (env, lp, ctype, i, i); switch (ctype[0]){ case CPX_INTEGER: @@ -127,7 +127,7 @@ MipCplex::Value MipCplex::_getPrimalValue() const { Value objval; - status = CPXgetmipobjval(env, lp, &objval); + CPXgetmipobjval(env, lp, &objval); return objval; } } //END OF NAMESPACE LEMON