From c87d6ab944c3c6d1c7844eb6434ca480aa9cd290 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Wed, 15 Dec 2021 13:16:59 +0100 Subject: [PATCH] Fix tidy warning --- include/deal.II/matrix_free/mapping_info.templates.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/deal.II/matrix_free/mapping_info.templates.h b/include/deal.II/matrix_free/mapping_info.templates.h index 6a4c0f186b..99d23c9ead 100644 --- a/include/deal.II/matrix_free/mapping_info.templates.h +++ b/include/deal.II/matrix_free/mapping_info.templates.h @@ -2049,9 +2049,7 @@ namespace internal for (unsigned int face = begin_face; face < end_face; ++face) for (unsigned vv = 0; vv < n_lanes; vv += n_lanes_d) { - internal::MatrixFreeFunctions::FaceToCellTopology< - VectorizedDouble::size()> - face_double = {}; + FaceToCellTopology face_double = {}; face_double.interior_face_no = faces[face].interior_face_no; face_double.exterior_face_no = faces[face].exterior_face_no; face_double.face_orientation = faces[face].face_orientation; -- 2.39.5