From 8d1da2ca066a332cd4053823933607e99a0d0b12 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Mon, 2 Dec 2019 18:35:35 +0100 Subject: [PATCH] changed: use std::make_tuple avoid explicit init list constructor with gcc5 --- tests/test_ParallelRestart.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ParallelRestart.cpp b/tests/test_ParallelRestart.cpp index 4ae6b0793..38c002189 100644 --- a/tests/test_ParallelRestart.cpp +++ b/tests/test_ParallelRestart.cpp @@ -121,7 +121,7 @@ std::tuple PackUnpack(const T& in) T out; Opm::Mpi::unpack(out, buffer, pos2, comm); - return {out, pos1, pos2}; + return std::make_tuple(out, pos1, pos2); }