From e71377747ef97d18c251dc70a502fe585dc29ce8 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 13 Jan 2017 22:14:57 -0700 Subject: [PATCH] Indent function arguments to align them.include/deal.II/fe/fe.h --- include/deal.II/fe/fe.h | 4 ++-- source/fe/fe.cc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/fe/fe.h b/include/deal.II/fe/fe.h index 5f54f94613..bab0e0d32a 100644 --- a/include/deal.II/fe/fe.h +++ b/include/deal.II/fe/fe.h @@ -1959,7 +1959,7 @@ public: void interpolate(std::vector &local_dofs, const std::vector > &values, - unsigned int offset = 0) const; + const unsigned int offset = 0) const; /** * Interpolate a set of vector values, computed in the generalized support @@ -1967,7 +1967,7 @@ public: */ virtual void - interpolate(std::vector &local_dofs, + interpolate(std::vector &local_dofs, const VectorSlice > > &values) const; //@} diff --git a/source/fe/fe.cc b/source/fe/fe.cc index 1a149f8360..2bbbe01b11 100644 --- a/source/fe/fe.cc +++ b/source/fe/fe.cc @@ -1120,9 +1120,9 @@ FiniteElement::interpolate( template void FiniteElement::interpolate( - std::vector &local_dofs, + std::vector &local_dofs, const std::vector > &values, - unsigned int offset) const + const unsigned int offset) const { Assert (has_support_points(), ExcFEHasNoSupportPoints()); Assert (values.size() == unit_support_points.size(), -- 2.39.5