From 43972d40822956c9a91876acae6f2a7a361a3aa2 Mon Sep 17 00:00:00 2001 From: Niklas Fehn Date: Tue, 9 Mar 2021 11:28:42 +0100 Subject: [PATCH] fix compilation error in tria_base.cc --- source/distributed/tria_base.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source/distributed/tria_base.cc b/source/distributed/tria_base.cc index c527125e1b..c497bc94c5 100644 --- a/source/distributed/tria_base.cc +++ b/source/distributed/tria_base.cc @@ -406,9 +406,8 @@ namespace parallel cell_counter[my_subdomain + 1]); IndexSet is_ghost(cell_counter.back()); number_cache.active_cell_index_partitioner = - Utilities::MPI::Partitioner(is_local, - is_ghost, - this->mpi_communicator); + std::make_shared( + is_local, is_ghost, this->mpi_communicator); // set global active cell indices and increment process-local counters for (const auto &cell : this->active_cell_iterators()) -- 2.39.5