From: Christian Heinrich Date: Thu, 9 Nov 2017 12:33:10 +0000 (+0100) Subject: [SMPI] Cosmetics in smpi_comm.cpp X-Git-Tag: v3.18~142 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ad5ffb0d4fbc0a8713bc101402cddafe31a221a3 [SMPI] Cosmetics in smpi_comm.cpp --- diff --git a/src/smpi/mpi/smpi_comm.cpp b/src/smpi/mpi/smpi_comm.cpp index 68df1180c9..cf85f3aca0 100644 --- a/src/smpi/mpi/smpi_comm.cpp +++ b/src/smpi/mpi/smpi_comm.cpp @@ -33,14 +33,14 @@ int Comm::keyval_id_=0; Comm::Comm(MPI_Group group, MPI_Topology topo) : group_(group), topo_(topo) { - refcount_=1; - topoType_ = MPI_INVALID_TOPO; - intra_comm_ = MPI_COMM_NULL; - leaders_comm_ = MPI_COMM_NULL; - is_uniform_=1; + refcount_ = 1; + topoType_ = MPI_INVALID_TOPO; + intra_comm_ = MPI_COMM_NULL; + leaders_comm_ = MPI_COMM_NULL; + is_uniform_ = 1; non_uniform_map_ = nullptr; - leaders_map_ = nullptr; - is_blocked_=0; + leaders_map_ = nullptr; + is_blocked_ = 0; } void Comm::destroy(Comm* comm) @@ -58,8 +58,8 @@ int Comm::dup(MPI_Comm* newcomm){ smpi_switch_data_segment(smpi_process()->index()); } MPI_Group cp = new Group(this->group()); - (*newcomm) = new Comm(cp, this->topo()); - int ret = MPI_SUCCESS; + (*newcomm) = new Comm(cp, this->topo()); + int ret = MPI_SUCCESS; if (not attributes()->empty()) { int flag;