anonymize unused parameters to quell warnings

This commit is contained in:
Arne Morten Kvarving 2021-04-30 13:08:48 +02:00
parent e74b3249e9
commit a200853148
2 changed files with 2 additions and 2 deletions

View File

@ -850,7 +850,7 @@ protected:
cellThickness_[elemIdx] = asImp_().computeCellThickness(element);
}
}
Scalar computeCellThickness(const Element& element) const {
Scalar computeCellThickness(const Element&) const {
OPM_THROW(std::runtime_error, "cellThickness not implemented for this grid!");
}

View File

@ -1428,7 +1428,7 @@ protected:
throw std::logic_error("commitWellState() method not implemented for class eclpeacemanwell");
}
void commitWGState(WGState wgstate)
void commitWGState(WGState)
{
throw std::logic_error("commitWellState() method not implemented for class eclpeacemanwell");
}