From 8cdcb5e3f38bceef37a9fb0fdb8e2475d3455a6e Mon Sep 17 00:00:00 2001 From: Matt Borland Date: Mon, 28 Oct 2024 09:48:06 -0400 Subject: [PATCH] Fix array init for Clang 3.x series --- test/github_issue_166_float128.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/github_issue_166_float128.cpp b/test/github_issue_166_float128.cpp index afb20cb4..9812bdb7 100644 --- a/test/github_issue_166_float128.cpp +++ b/test/github_issue_166_float128.cpp @@ -50,7 +50,7 @@ void more_rounding() template void further_rounding() { - const std::array solutions { + const std::array solutions = {{ "3331.5", "3331.52", "3331.520", @@ -59,7 +59,7 @@ void further_rounding() "3331.519894", "3331.5198945", "3331.51989448" - }; + }}; constexpr T value = 3331.519894481067353L;