From 2174fed2727feb4d4c3e505766b0161eb6a5a54a Mon Sep 17 00:00:00 2001 From: David Wells Date: Mon, 19 Oct 2015 08:33:12 -0400 Subject: [PATCH] Use a local typedef to shorten things. --- 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 b02808c9dd..40c225477f 100644 --- a/include/deal.II/numerics/vector_tools.templates.h +++ b/include/deal.II/numerics/vector_tools.templates.h @@ -6426,7 +6426,7 @@ namespace VectorTools } dealii::hp::FECollection fe_collection (dof.get_fe()); - IDScratchData data(mapping, fe_collection, q, update_flags); + IDScratchData data(mapping, fe_collection, q, update_flags); // loop over all cells for (typename DH::active_cell_iterator cell = dof.begin_active(); @@ -6446,9 +6446,9 @@ namespace VectorTools fe_values.get_function_gradients (fe_function, data.function_grads); difference(cell->active_cell_index()) = - integrate_difference_inner (exact_solution, norm, weight, - update_flags, exponent, - n_components, data); + integrate_difference_inner (exact_solution, norm, weight, + update_flags, exponent, + n_components, data); } else // the cell is a ghost cell or is artificial. write a zero into the -- 2.39.5