[Lemon-commits] alpar: r3102 - hugo/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Dec 4 19:08:30 CET 2006
Author: alpar
Date: Mon Dec 4 19:08:30 2006
New Revision: 3102
Modified:
hugo/trunk/lemon/lp_glpk.cc
hugo/trunk/lemon/lp_skeleton.cc
Log:
Fix 'unused variable' warnings
Modified: hugo/trunk/lemon/lp_glpk.cc
==============================================================================
--- hugo/trunk/lemon/lp_glpk.cc (original)
+++ hugo/trunk/lemon/lp_glpk.cc Mon Dec 4 19:08:30 2006
@@ -213,7 +213,7 @@
}
}
- LpGlpk::Value LpGlpk::_getCoeff(int row, int col)
+ LpGlpk::Value LpGlpk::_getCoeff(int, int)
{
///\todo This is not yet implemented!!!
return 0;
Modified: hugo/trunk/lemon/lp_skeleton.cc
==============================================================================
--- hugo/trunk/lemon/lp_skeleton.cc (original)
+++ hugo/trunk/lemon/lp_skeleton.cc Mon Dec 4 19:08:30 2006
@@ -98,7 +98,7 @@
{
}
- LpSkeleton::Value LpSkeleton::_getObjCoeff(int i){
+ LpSkeleton::Value LpSkeleton::_getObjCoeff(int){
return 0;
}
More information about the Lemon-commits
mailing list