remove static assert in vector handler of eclmpiserializer

std::is_pod is too generic
This commit is contained in:
Arne Morten Kvarving 2020-03-16 08:02:18 +01:00
parent e6a117abec
commit 6fee426bfc

View File

@ -51,7 +51,6 @@ public:
template<class T>
void vector(std::vector<T>& data)
{
static_assert(!std::is_pod<T>::value, "Do not call this for POD vectors");
auto handle = [&](auto& d)
{
for (auto& it : d) {