Fix more unused parameter warnings (#1076)

This commit is contained in:
Daniel Schwen
2018-08-23 09:26:00 -06:00
parent 7238d4af94
commit e9bc939098
121 changed files with 224 additions and 223 deletions

View File

@ -279,7 +279,7 @@ void ComputeTempRamp::remove_bias_all()
assume remove_bias() was previously called
------------------------------------------------------------------------- */
void ComputeTempRamp::restore_bias(int i, double *v)
void ComputeTempRamp::restore_bias(int /*i*/, double *v)
{
v[v_dim] += vbias[v_dim];
}
@ -289,7 +289,7 @@ void ComputeTempRamp::restore_bias(int i, double *v)
assume remove_bias_thr() was previously called with the same buffer b
------------------------------------------------------------------------- */
void ComputeTempRamp::restore_bias_thr(int i, double *v, double *b)
void ComputeTempRamp::restore_bias_thr(int /*i*/, double *v, double *b)
{
v[v_dim] += b[v_dim];
}