From 750184cdf6360e54e5173737949b1f86e6121037 Mon Sep 17 00:00:00 2001 From: Joakim Hove Date: Thu, 29 Aug 2019 19:38:27 +0200 Subject: [PATCH] Add reportStep argument to Schedule::actions() --- ebos/eclproblem.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebos/eclproblem.hh b/ebos/eclproblem.hh index 1e06ec216..0f4cb09a3 100644 --- a/ebos/eclproblem.hh +++ b/ebos/eclproblem.hh @@ -1021,7 +1021,7 @@ public: void applyActions(int reportStep, Opm::Schedule& schedule, const Opm::SummaryState& summaryState) { - const auto& actions = schedule.actions(); + const auto& actions = schedule.actions(reportStep); if (actions.empty()) return;