From ebb1d4ed081b25ad2012907e1902e3f54b063c00 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Fri, 14 May 2021 11:37:27 -0400 Subject: [PATCH] Fix warnings in step-75 --- examples/step-75/step-75.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/step-75/step-75.cc b/examples/step-75/step-75.cc index 443fb4399e..1c4f469165 100644 --- a/examples/step-75/step-75.cc +++ b/examples/step-75/step-75.cc @@ -1175,7 +1175,7 @@ namespace Step75 << std::endl << " by partition: "; - std::vector n_dofs_per_subdomain = + std::vector n_dofs_per_subdomain = Utilities::MPI::gather(mpi_communicator, dof_handler.n_locally_owned_dofs()); for (unsigned int i = 0; i < first_n_processes; ++i) @@ -1186,7 +1186,7 @@ namespace Step75 } { - std::vector n_constraints_per_subdomain = + std::vector n_constraints_per_subdomain = Utilities::MPI::gather(mpi_communicator, constraints.n_constraints()); pcout << " Number of constraints: " -- 2.39.5