From 2b4abe8dc54a1029643651e25748f1c35235dd33 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Thu, 21 Sep 2023 12:23:54 -0400 Subject: [PATCH] Fix compiling fe_tools_extrapolate tests without PETSc --- tests/mpi/fe_tools_extrapolate_common.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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(); -- 2.39.5