From: Niklas Fehn Date: Tue, 9 Mar 2021 10:28:42 +0000 (+0100) Subject: fix compilation error in tria_base.cc X-Git-Tag: v9.3.0-rc1~354^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43972d40822956c9a91876acae6f2a7a361a3aa2;p=dealii.git fix compilation error in tria_base.cc --- 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())