From: Daniel Arndt Date: Thu, 21 Sep 2023 16:23:54 +0000 (-0400) Subject: Fix compiling fe_tools_extrapolate tests without PETSc X-Git-Tag: relicensing~477^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b4abe8dc54a1029643651e25748f1c35235dd33;p=dealii.git Fix compiling fe_tools_extrapolate tests without PETSc --- diff --git a/tests/mpi/fe_tools_extrapolate_common.h b/tests/mpi/fe_tools_extrapolate_common.h index 31ca05ac62..1f6ddf3afe 100644 --- a/tests/mpi/fe_tools_extrapolate_common.h +++ b/tests/mpi/fe_tools_extrapolate_common.h @@ -201,12 +201,12 @@ check_this(const FiniteElement &fe1, const FiniteElement &fe2) const IndexSet locally_relevant_dofs2 = DoFTools::extract_locally_relevant_dofs(*dof2); - AffineConstraints cm1(locally_owned_dofs1, - locally_relevant_dofs1); + AffineConstraints cm1( + locally_owned_dofs1, locally_relevant_dofs1); DoFTools::make_hanging_node_constraints(*dof1, cm1); cm1.close(); - AffineConstraints cm2(locally_owned_dofs2, - locally_relevant_dofs2); + AffineConstraints cm2( + locally_owned_dofs2, locally_relevant_dofs2); DoFTools::make_hanging_node_constraints(*dof2, cm2); cm2.close();