From 52fe39a8b1af4e0a96caaeee0d517a8ddc14a69b Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 16 Mar 2018 19:53:29 -0600 Subject: [PATCH] Really only two micro-cleanups. --- include/deal.II/fe/fe_tools.templates.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/deal.II/fe/fe_tools.templates.h b/include/deal.II/fe/fe_tools.templates.h index cb433bea45..5b36bc324f 100644 --- a/include/deal.II/fe/fe_tools.templates.h +++ b/include/deal.II/fe/fe_tools.templates.h @@ -2999,7 +2999,8 @@ namespace FETools template void - hierarchic_to_lexicographic_numbering (unsigned int degree, std::vector &h2l) + hierarchic_to_lexicographic_numbering (const unsigned int degree, + std::vector &h2l) { // number of support points in each direction const unsigned int n = degree+1; @@ -3181,7 +3182,7 @@ namespace FETools Assert (fe.n_components() == 1, ExcInvalidFE()); std::vector h2l(fe.dofs_per_cell); hierarchic_to_lexicographic_numbering (fe.dofs_per_line+1, h2l); - return (h2l); + return h2l; } -- 2.39.5