changed: use std::make_tuple

avoid explicit init list constructor with gcc5
This commit is contained in:
Arne Morten Kvarving 2019-12-02 18:35:35 +01:00
parent 272e63410d
commit 8d1da2ca06

View File

@ -121,7 +121,7 @@ std::tuple<T,int,int> PackUnpack(const T& in)
T out;
Opm::Mpi::unpack(out, buffer, pos2, comm);
return {out, pos1, pos2};
return std::make_tuple(out, pos1, pos2);
}