mirror of
https://github.com/OPM/opm-simulators.git
synced 2026-09-05 04:40:19 -05:00
Remove references to RestartConfig
This commit is contained in:
@@ -252,8 +252,6 @@ public:
|
||||
this->template vector<typename Data::value_type,complexType>(d);
|
||||
else if constexpr (is_ptr<Data>::value)
|
||||
ptr(d);
|
||||
else if constexpr (is_dynamic_state<Data>::value)
|
||||
d.template serializeOp<EclMpiSerializer, complexType>(*this);
|
||||
else if constexpr (complexType)
|
||||
d.serializeOp(*this);
|
||||
else
|
||||
@@ -419,17 +417,6 @@ protected:
|
||||
constexpr static bool value = true;
|
||||
};
|
||||
|
||||
//! \brief Predicate for DynamicState.
|
||||
template<class T>
|
||||
struct is_dynamic_state {
|
||||
constexpr static bool value = false;
|
||||
};
|
||||
|
||||
template<class T1>
|
||||
struct is_dynamic_state<DynamicState<T1>> {
|
||||
constexpr static bool value = true;
|
||||
};
|
||||
|
||||
//! \brief Predicate for std::optional.
|
||||
template<class T>
|
||||
struct is_optional {
|
||||
|
||||
Reference in New Issue
Block a user