From cc22f66b62130fbc22d422d982e1e07ec113b3d2 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Thu, 18 Jul 2024 12:47:37 +0200 Subject: [PATCH] Fix Windows compile --- .../multigrid/mg_transfer_global_coarsening.templates.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/include/deal.II/multigrid/mg_transfer_global_coarsening.templates.h b/include/deal.II/multigrid/mg_transfer_global_coarsening.templates.h index 6df7bcd789..29b1f02847 100644 --- a/include/deal.II/multigrid/mg_transfer_global_coarsening.templates.h +++ b/include/deal.II/multigrid/mg_transfer_global_coarsening.templates.h @@ -2173,7 +2173,7 @@ namespace internal - template + template static void compute_prolongation_and_restriction_matrices( const FiniteElement &fe_fine, @@ -2593,7 +2593,7 @@ namespace internal // ------------------------- prolongation matrix ------------------------- for (const auto &fe_index_pair_ : fe_index_pairs) - compute_prolongation_and_restriction_matrices( + compute_prolongation_and_restriction_matrices( dof_handler_fine.get_fe(fe_index_pair_.first.second), dof_handler_coarse.get_fe(fe_index_pair_.first.first), transfer.schemes[fe_index_pair_.second]); @@ -4118,9 +4118,8 @@ MGTwoLevelTransfer::reinit( // Compute interpolation matrices, possibly in the 1D version schemes.resize(1); internal::MGTwoLevelTransferImplementation:: - compute_prolongation_and_restriction_matrices(fe_fine, - dof_coarse.get_fe(), - schemes[0]); + compute_prolongation_and_restriction_matrices( + fe_fine, dof_coarse.get_fe(), schemes[0]); // We internally call the ghost updates through the matrix-free framework this->vec_fine_needs_ghost_update = false; -- 2.39.5