Remove report_step argument from Well::handleCOMPSEGS()

This commit is contained in:
Joakim Hove
2021-02-03 11:45:18 +01:00
parent 5580165fee
commit fa85bc6445
3 changed files with 2 additions and 3 deletions

View File

@@ -566,7 +566,7 @@ public:
void updateWPaveRefDepth(double ref_depth);
bool handleWELSEGS(const DeckKeyword& keyword);
bool handleCOMPSEGS(const DeckKeyword& keyword, std::size_t report_step, const EclipseGrid& grid, const ParseContext& parseContext, ErrorGuard& errors);
bool handleCOMPSEGS(const DeckKeyword& keyword, const EclipseGrid& grid, const ParseContext& parseContext, ErrorGuard& errors);
bool handleWELOPENConnections(const DeckRecord& record, std::size_t report_step, Connection::State status, bool action_mode);
bool handleCOMPLUMP(const DeckRecord& record, std::size_t report_step);
bool handleWPIMULT(const DeckRecord& record, std::size_t report_step);

View File

@@ -236,7 +236,7 @@ namespace {
return;
}
if (well_ptr->handleCOMPSEGS(handlerContext.keyword, handlerContext.currentStep, *handlerContext.grid_ptr, parseContext, errors))
if (well_ptr->handleCOMPSEGS(handlerContext.keyword, *handlerContext.grid_ptr, parseContext, errors))
this->updateWell(std::move(well_ptr), handlerContext.currentStep);
}

View File

@@ -700,7 +700,6 @@ bool Well::updateSolventFraction(double solvent_fraction_arg) {
bool Well::handleCOMPSEGS(const DeckKeyword& keyword,
std::size_t report_step,
const EclipseGrid& grid,
const ParseContext& parseContext,
ErrorGuard& errors) {