eclmpiserializer: fix is_vector predicate

allow custom allocator
This commit is contained in:
Arne Morten Kvarving
2022-09-07 11:22:24 +02:00
parent 56c653235f
commit 053dfc7ce5

View File

@@ -442,8 +442,8 @@ protected:
constexpr static bool value = false; constexpr static bool value = false;
}; };
template<class T1> template<class T1, class Allocator>
struct is_vector<std::vector<T1>> { struct is_vector<std::vector<T1,Allocator>> {
constexpr static bool value = true; constexpr static bool value = true;
}; };