From: Wolfgang Bangerth Date: Sat, 14 Jan 2017 05:14:57 +0000 (-0700) Subject: Indent function arguments to align them.include/deal.II/fe/fe.h X-Git-Tag: v8.5.0-rc1~244^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3795%2Fhead;p=dealii.git Indent function arguments to align them.include/deal.II/fe/fe.h --- 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(),