eclmpiserializer: fix is_vector predicate

allow custom allocator
This commit is contained in:
Arne Morten Kvarving
2022-09-13 10:49:54 +02:00
parent 56c653235f
commit 053dfc7ce5
+2 -2
View File
@@ -442,8 +442,8 @@ protected:
constexpr static bool value = false;
};
template<class T1>
struct is_vector<std::vector<T1>> {
template<class T1, class Allocator>
struct is_vector<std::vector<T1,Allocator>> {
constexpr static bool value = true;
};