From cb41a456873c64865ae7f096b2c3e25a3b5668f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Mon, 29 Feb 2016 11:03:08 +0100 Subject: [PATCH] Remove unused 'restart' parameter from SimulatorTimer::init(). --- opm/simulators/timestepping/SimulatorTimer.cpp | 2 +- opm/simulators/timestepping/SimulatorTimer.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/opm/simulators/timestepping/SimulatorTimer.cpp b/opm/simulators/timestepping/SimulatorTimer.cpp index 34d58fb03..2dc2f295f 100644 --- a/opm/simulators/timestepping/SimulatorTimer.cpp +++ b/opm/simulators/timestepping/SimulatorTimer.cpp @@ -49,7 +49,7 @@ namespace Opm } /// Use the SimulatorTimer as a shim around opm-parser's Opm::TimeMap - void SimulatorTimer::init(Opm::TimeMapConstPtr timeMap, bool restart, size_t report_step) + void SimulatorTimer::init(Opm::TimeMapConstPtr timeMap, size_t report_step) { total_time_ = timeMap->getTotalTime(); timesteps_.resize(timeMap->numTimesteps()); diff --git a/opm/simulators/timestepping/SimulatorTimer.hpp b/opm/simulators/timestepping/SimulatorTimer.hpp index 25ca48840..12794ebf8 100644 --- a/opm/simulators/timestepping/SimulatorTimer.hpp +++ b/opm/simulators/timestepping/SimulatorTimer.hpp @@ -47,7 +47,7 @@ namespace Opm void init(const parameter::ParameterGroup& param); /// Use the SimulatorTimer as a shim around opm-parser's Opm::TimeMap - void init(TimeMapConstPtr timeMap, bool restart = false, size_t report_step = 0); + void init(TimeMapConstPtr timeMap, size_t report_step = 0); /// Total number of steps. int numSteps() const;