Remove references to RestartConfig

This commit is contained in:
Joakim Hove
2021-03-26 08:03:07 +01:00
parent 498efe11a7
commit 3d226abd24
3 changed files with 2 additions and 17 deletions
-13
View File
@@ -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 {