From: Buğrahan Temür Date: Thu, 16 Mar 2023 07:52:08 +0000 (+0100) Subject: Update include/deal.II/matrix_free/evaluation_kernels.h X-Git-Tag: v9.5.0-rc1~469^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F14850%2Fhead;p=dealii.git Update include/deal.II/matrix_free/evaluation_kernels.h initalization of array of VectorizedArray Co-authored-by: Peter Munch --- 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."));