From 371e37cf3f8fb2743fb405b243848f765bdf9ce9 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 18 May 2020 17:19:05 -0600 Subject: [PATCH] Use mpi_communicator instead of MPI_COMM_WORLD. --- examples/step-70/step-70.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/step-70/step-70.cc b/examples/step-70/step-70.cc index d3e35dc9ec..9ea88cc6e0 100644 --- a/examples/step-70/step-70.cc +++ b/examples/step-70/step-70.cc @@ -910,7 +910,7 @@ namespace Step70 // and gather the information from all participating processes global_fluid_bounding_boxes = - Utilities::MPI::all_gather(MPI_COMM_WORLD, local_boxes); + Utilities::MPI::all_gather(mpi_communicator, local_boxes); // Finally generate the particles from the support points of the -- 2.39.5