Remove tucked away reference to parser in Sim.outp.

This commit is contained in:
Roland Kaufmann 2013-11-19 12:34:52 +01:00
parent ce7eb44836
commit e978cbf848
2 changed files with 1 additions and 3 deletions

View File

@ -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)

View File

@ -64,7 +64,6 @@ protected:
operator std::function <void ()> ();
/// Just hold a reference to these objects that are owned elsewhere.
std::shared_ptr <EclipseGridParser> parser_;
std::shared_ptr <SimulatorTimer> timer_;
std::shared_ptr <BlackoilState> reservoirState_;
std::shared_ptr <WellState> wellState_;