From 28a7b728f37b32f5e73f5a5a2ad57d0b3109c5eb Mon Sep 17 00:00:00 2001 From: Roy Stogner Date: Fri, 29 May 2026 15:36:24 -0500 Subject: [PATCH] Initialize temp variable in test We had to add this to work around a spurious warning from one compiler; now we're having to change it to work around a different spurious (although much more excusably so) warning from another compiler. --- test/parallel_unit.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel_unit.C b/test/parallel_unit.C index 6888d09..ec1191d 100644 --- a/test/parallel_unit.C +++ b/test/parallel_unit.C @@ -278,7 +278,7 @@ void testGather() // Workaround for spurious warning from operator= // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100366 - aa x; + aa x{{ {0,1,2},{3,4,5} }}; std::vector src(3), dest(3,x); src[0][0][0] = 0;