From: kormann Date: Sun, 15 Jul 2012 12:04:43 +0000 (+0000) Subject: Correct initialization of partitioner (bug pointed out by Martin Steigemann). X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e83963d008604099ee541f440ca967f878bca32;p=dealii-svn.git Correct initialization of partitioner (bug pointed out by Martin Steigemann). git-svn-id: https://svn.dealii.org/trunk@25702 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/base/partitioner.cc b/deal.II/source/base/partitioner.cc index ebeaa14876..e3f09c43e0 100644 --- a/deal.II/source/base/partitioner.cc +++ b/deal.II/source/base/partitioner.cc @@ -42,7 +42,9 @@ namespace Utilities my_pid (0), n_procs (1), communicator (MPI_COMM_SELF) - {} + { + ghost_indices_data.set_size (size); + }