From: Maximilian Bergbauer Date: Wed, 20 Sep 2023 08:06:09 +0000 (+0200) Subject: Fix uninitialized warning X-Git-Tag: relicensing~480^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16018%2Fhead;p=dealii.git Fix uninitialized warning --- diff --git a/include/deal.II/matrix_free/fe_point_evaluation.h b/include/deal.II/matrix_free/fe_point_evaluation.h index 9189fd0b2e..c1e2c28216 100644 --- a/include/deal.II/matrix_free/fe_point_evaluation.h +++ b/include/deal.II/matrix_free/fe_point_evaluation.h @@ -2495,7 +2495,7 @@ FEPointEvaluation::integrate_fast( is_linear ? (is_face_path ? 2 * Utilities::pow(2, dim - 1) : Utilities::pow(2, dim)) : 0> - solution_values_vectorized_linear; + solution_values_vectorized_linear = {}; // loop over quadrature batches qb const unsigned int n_shapes = is_linear ? 2 : poly.size();