# HG changeset patch # User alpar # Date 1165255710 0 # Node ID af8c695372be5bed7174501594453856d184ad15 # Parent d6ec469aa01934cfa5d3ed2bcd04b359f1535368 Fix 'unused variable' warnings diff -r d6ec469aa019 -r af8c695372be lemon/lp_glpk.cc --- a/lemon/lp_glpk.cc Mon Dec 04 16:51:46 2006 +0000 +++ b/lemon/lp_glpk.cc Mon Dec 04 18:08:30 2006 +0000 @@ -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; diff -r d6ec469aa019 -r af8c695372be lemon/lp_skeleton.cc --- a/lemon/lp_skeleton.cc Mon Dec 04 16:51:46 2006 +0000 +++ b/lemon/lp_skeleton.cc Mon Dec 04 18:08:30 2006 +0000 @@ -98,7 +98,7 @@ { } - LpSkeleton::Value LpSkeleton::_getObjCoeff(int i){ + LpSkeleton::Value LpSkeleton::_getObjCoeff(int){ return 0; }