From a3895edf62b24ca7925b63b4635a1ac3fa417851 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Wed, 27 Sep 2017 12:14:15 -0500 Subject: [PATCH] run astyle. yes, it looks quite bad :-( --- .../deal.II/numerics/vector_tools.templates.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/include/deal.II/numerics/vector_tools.templates.h b/include/deal.II/numerics/vector_tools.templates.h index 2e68509b63..e0405b778c 100644 --- a/include/deal.II/numerics/vector_tools.templates.h +++ b/include/deal.II/numerics/vector_tools.templates.h @@ -136,8 +136,8 @@ namespace VectorTools fe_values_jacobians.get_present_fe_values().get_jacobians(); auto shifted_view = boost::make_iterator_range( - std::begin(function_values[i]) + offset, - std::begin(function_values[i]) + offset + dim); + std::begin(function_values[i]) + offset, + std::begin(function_values[i]) + offset + dim); std::vector old_value; std::copy(std::begin(shifted_view), std::end(shifted_view), @@ -162,11 +162,11 @@ namespace VectorTools fe_values_jacobians.get_present_fe_values().get_jacobians(); const auto &inverse_jacobians = fe_values_jacobians.get_present_fe_values() - .get_inverse_jacobians(); + .get_inverse_jacobians(); auto shifted_view = boost::make_iterator_range( - std::begin(function_values[i]) + offset, - std::begin(function_values[i]) + offset + dim); + std::begin(function_values[i]) + offset, + std::begin(function_values[i]) + offset + dim); std::vector old_value; std::copy(std::begin(shifted_view), std::end(shifted_view), @@ -398,7 +398,7 @@ namespace VectorTools ExcDimensionMismatch(dof_handler.get_fe().n_components(), function(cell).n_components)); function(cell).vector_value_list(generalized_support_points, - function_values); + function_values); { // Before we can average, we have to transform all function values @@ -501,8 +501,8 @@ namespace VectorTools // Create a small lambda capture wrapping function and call the // internal implementation const auto function_map = [&function]( - const typename DoFHandlerType::active_cell_iterator &) - -> const Function & + const typename DoFHandlerType::active_cell_iterator &) + -> const Function & { return function; }; -- 2.39.5