eclbasevanguard: no reason for externalSetupTime to be a scalar

make it a double always
This commit is contained in:
Arne Morten Kvarving 2021-05-04 09:43:38 +02:00
parent dbf834518e
commit 4dd5dc902b

View File

@ -910,7 +910,7 @@ private:
std::string caseName_;
static Scalar externalSetupTime_;
static double externalSetupTime_;
static std::unique_ptr<ParseContext> externalParseContext_;
static std::unique_ptr<ErrorGuard> externalErrorGuard_;
@ -970,7 +970,7 @@ protected:
};
template <class TypeTag>
typename EclBaseVanguard<TypeTag>::Scalar EclBaseVanguard<TypeTag>::externalSetupTime_ = 0.0;
double EclBaseVanguard<TypeTag>::externalSetupTime_ = 0.0;
template <class TypeTag>
std::unique_ptr<ParseContext> EclBaseVanguard<TypeTag>::externalParseContext_ = nullptr;