From 4ec5036833fcb851c0c371ae1a21dead5690a377 Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Sun, 26 Jun 2022 09:47:19 +0200 Subject: [PATCH] Remove traling const --- include/deal.II/matrix_free/tools.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5