add missing initializers

does not really do harm, but quells warnings from valgrind
when serializing the class
This commit is contained in:
Arne Morten Kvarving 2020-01-24 12:07:18 +01:00
parent 81ccf49424
commit 328bb9c427

View File

@ -1099,9 +1099,9 @@ private:
GasOilEffectiveParamVector gasOilEffectiveParamVector_;
OilWaterEffectiveParamVector oilWaterEffectiveParamVector_;
Opm::EclMultiplexerApproach threePhaseApproach_;
Opm::EclMultiplexerApproach threePhaseApproach_ = EclMultiplexerApproach::EclDefaultApproach;
// this attribute only makes sense for twophase simulations!
enum EclTwoPhaseApproach twoPhaseApproach_;
enum EclTwoPhaseApproach twoPhaseApproach_ = EclTwoPhaseApproach::EclTwoPhaseGasOil;
std::vector<std::shared_ptr<MaterialLawParams> > materialLawParams_;