From eb56fb508d63e4db23357a44498fc38205fdd453 Mon Sep 17 00:00:00 2001 From: Oreste Marquis Date: Fri, 16 Aug 2024 13:07:44 -0400 Subject: [PATCH] change the -> operator --- include/deal.II/numerics/vector_tools_interpolate.templates.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/numerics/vector_tools_interpolate.templates.h b/include/deal.II/numerics/vector_tools_interpolate.templates.h index 1e9633c441..e993f1f891 100644 --- a/include/deal.II/numerics/vector_tools_interpolate.templates.h +++ b/include/deal.II/numerics/vector_tools_interpolate.templates.h @@ -323,7 +323,7 @@ namespace VectorTools { const auto &fe_i = fe[fe_index]; // If the finite element has no dofs, we can skip it - if (fe_i->dofs_per_cell == 0) + if (fe_i.dofs_per_cell == 0) continue; Assert(fe_i.has_generalized_support_points(), ExcMessage( -- 2.39.5