From ce9d429a397362dbc00f955949ef5d9c2ef18575 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 30 Oct 2017 18:06:40 -0600 Subject: [PATCH] Rename a template argument. Make the argument 'const'. --- include/deal.II/numerics/vector_tools.templates.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/numerics/vector_tools.templates.h b/include/deal.II/numerics/vector_tools.templates.h index 67f9375c07..dc42b5bfab 100644 --- a/include/deal.II/numerics/vector_tools.templates.h +++ b/include/deal.II/numerics/vector_tools.templates.h @@ -114,10 +114,10 @@ namespace VectorTools // reinit()'d for the current cell // function_values, offset: function_values is manipulated in place // starting at position offset - template + template void transform(const typename FiniteElementData::Conformity conformity, const unsigned int offset, - T2 &fe_values_jacobians, + const FEValuesType &fe_values_jacobians, T3 &function_values) { switch (conformity) @@ -206,11 +206,11 @@ namespace VectorTools // [ rest see above] // Output: the offset after we have handled the element at // a given offset - template + template unsigned int apply_transform(const FiniteElement &fe, const unsigned int offset, - T2 &fe_values_jacobians, + const FEValuesType &fe_values_jacobians, T3 &function_values) { if (const auto *system = -- 2.39.5