From: Martin Kronbichler Date: Thu, 18 Jul 2024 10:47:37 +0000 (+0200) Subject: Fix Windows compile X-Git-Tag: v9.6.0-rc1~52^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc22f66b62130fbc22d422d982e1e07ec113b3d2;p=dealii.git Fix Windows compile --- 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;