From: Matthias Maier Date: Wed, 27 Sep 2017 17:14:15 +0000 (-0500) Subject: run astyle. yes, it looks quite bad :-( X-Git-Tag: v9.0.0-rc1~1002^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5151%2Fhead;p=dealii.git run astyle. yes, it looks quite bad :-( --- 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; };