Merge pull request #2111 from joakim-hove/warnings

Warnings
This commit is contained in:
Joakim Hove 2020-11-16 10:36:08 +01:00 committed by GitHub
commit bd9df4ec54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -2775,6 +2775,7 @@ eval(const EclipseState& es,
}
for (auto& [_, evalPtr] : this->extra_parameters) {
(void)_;
evalPtr->update(sim_step, duration, input, simRes, st);
}
}

View File

@ -69,7 +69,7 @@ PAvg::PAvg(double inner_weight, double conn_weight, DepthCorrection depth_correc
m_open_connections(use_open_connections)
{}
static PAvg serializeObject() {
PAvg PAvg::serializeObject() {
return PAvg(0.10, 0.30, PAvg::DepthCorrection::NONE, false);
}