From e978cbf848db9a8ec3ec2e643464d9025b21f41d Mon Sep 17 00:00:00 2001 From: Roland Kaufmann Date: Tue, 19 Nov 2013 12:34:52 +0100 Subject: [PATCH] Remove tucked away reference to parser in Sim.outp. --- opm/core/simulator/SimulatorOutput.cpp | 3 +-- opm/core/simulator/SimulatorOutput.hpp | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/opm/core/simulator/SimulatorOutput.cpp b/opm/core/simulator/SimulatorOutput.cpp index 08235bea..c3db4273 100644 --- a/opm/core/simulator/SimulatorOutput.cpp +++ b/opm/core/simulator/SimulatorOutput.cpp @@ -38,8 +38,7 @@ SimulatorOutputBase::SimulatorOutputBase ( // store all parameters passed into the object, making them curried // parameters to the writeOutput function. - : parser_ (parser ) - , timer_ (timer ) + : timer_ (timer ) , reservoirState_ (state ) , wellState_ (wellState) diff --git a/opm/core/simulator/SimulatorOutput.hpp b/opm/core/simulator/SimulatorOutput.hpp index cca01cd4..5d3fc5ac 100644 --- a/opm/core/simulator/SimulatorOutput.hpp +++ b/opm/core/simulator/SimulatorOutput.hpp @@ -64,7 +64,6 @@ protected: operator std::function (); /// Just hold a reference to these objects that are owned elsewhere. - std::shared_ptr parser_; std::shared_ptr timer_; std::shared_ptr reservoirState_; std::shared_ptr wellState_;