From: Peter Munch Date: Sun, 26 Jun 2022 07:47:19 +0000 (+0200) Subject: Remove traling const X-Git-Tag: v9.5.0-rc1~1155^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ec5036833fcb851c0c371ae1a21dead5690a377;p=dealii.git Remove traling const --- diff --git a/include/deal.II/matrix_free/tools.h b/include/deal.II/matrix_free/tools.h index f6c7c13a80..252ddd282e 100644 --- a/include/deal.II/matrix_free/tools.h +++ b/include/deal.II/matrix_free/tools.h @@ -1031,7 +1031,7 @@ namespace MatrixFreeTools integrator( matrix_free, range, dof_no, quad_no, first_selected_component); - unsigned int const dofs_per_cell = integrator.dofs_per_cell; + const unsigned int dofs_per_cell = integrator.dofs_per_cell; std::vector dof_indices(dofs_per_cell); std::vector dof_indices_mf(dofs_per_cell);