From c06d5912eab206cbc37a80cbfdb647ab6e78b5a4 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Thu, 17 Oct 2019 09:49:15 +0200 Subject: [PATCH] fixed: build using gcc 5 (ubuntu xenial) the tuple-from-initializer-list constructor is explicit. --- tests/test_Restart.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_Restart.cpp b/tests/test_Restart.cpp index 196ff33ba..4fbf0a474 100644 --- a/tests/test_Restart.cpp +++ b/tests/test_Restart.cpp @@ -75,7 +75,7 @@ namespace { } } - return { "NoSuchKeyword", Opm::EclIO::eclArrType::MESS, 0 }; + return EclIO::EclFile::EclEntry{ "NoSuchKeyword", Opm::EclIO::eclArrType::MESS, 0 }; } EclIO::eclArrType ecl_kw_get_type(const EclIO::EclFile::EclEntry& vec)