Fix 'unused variable' warnings
authoralpar
Mon, 04 Dec 2006 18:08:30 +0000
changeset 2326af8c695372be
parent 2325 d6ec469aa019
child 2327 596e48d6e77b
Fix 'unused variable' warnings
lemon/lp_glpk.cc
lemon/lp_skeleton.cc
     1.1 --- a/lemon/lp_glpk.cc	Mon Dec 04 16:51:46 2006 +0000
     1.2 +++ b/lemon/lp_glpk.cc	Mon Dec 04 18:08:30 2006 +0000
     1.3 @@ -213,7 +213,7 @@
     1.4      }
     1.5    }
     1.6  
     1.7 -  LpGlpk::Value LpGlpk::_getCoeff(int row, int col)
     1.8 +  LpGlpk::Value LpGlpk::_getCoeff(int, int)
     1.9    {
    1.10      ///\todo This is not yet implemented!!!
    1.11      return 0;
     2.1 --- a/lemon/lp_skeleton.cc	Mon Dec 04 16:51:46 2006 +0000
     2.2 +++ b/lemon/lp_skeleton.cc	Mon Dec 04 18:08:30 2006 +0000
     2.3 @@ -98,7 +98,7 @@
     2.4    {
     2.5    }
     2.6  
     2.7 -  LpSkeleton::Value LpSkeleton::_getObjCoeff(int i){
     2.8 +  LpSkeleton::Value LpSkeleton::_getObjCoeff(int){
     2.9      return 0;
    2.10    }
    2.11