From 1fd89df27b1548c326f3e956706bf61a663c6419 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Tue, 11 Jan 2022 10:29:46 +0100 Subject: [PATCH] Fix some spurious variable names --- include/deal.II/matrix_free/evaluation_template_factory.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/matrix_free/evaluation_template_factory.h b/include/deal.II/matrix_free/evaluation_template_factory.h index 9eeb83700c..6ea92bf884 100644 --- a/include/deal.II/matrix_free/evaluation_template_factory.h +++ b/include/deal.II/matrix_free/evaluation_template_factory.h @@ -101,7 +101,7 @@ namespace internal { static void apply(const unsigned int n_components, - const FEEvaluationData &fe_fe_eval, + const FEEvaluationData &fe_eval, const Number * in_array, Number * out_array); @@ -116,7 +116,7 @@ namespace internal static void transform_from_q_points_to_basis( const unsigned int n_components, - const FEEvaluationData &fe_fe_eval, + const FEEvaluationData &fe_eval, const Number * in_array, Number * out_array); }; -- 2.39.5