From d5578946440a61f7b355ab066c5c414c863183c4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bu=C4=9Frahan=20Tem=C3=BCr?= Date: Thu, 16 Mar 2023 08:52:08 +0100 Subject: [PATCH] Update include/deal.II/matrix_free/evaluation_kernels.h initalization of array of VectorizedArray Co-authored-by: Peter Munch --- include/deal.II/matrix_free/evaluation_kernels.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/matrix_free/evaluation_kernels.h b/include/deal.II/matrix_free/evaluation_kernels.h index b0145fa8e4..5406d19008 100644 --- a/include/deal.II/matrix_free/evaluation_kernels.h +++ b/include/deal.II/matrix_free/evaluation_kernels.h @@ -5833,7 +5833,7 @@ namespace internal const unsigned int n_desired_components = (n_components > -1) ? n_components : n_given_components; - std::array tmp; + std::array tmp = {}; Assert(n_desired_components <= dim + 2, ExcMessage( "Number of components larger than dim+2 not supported.")); -- 2.39.5