]> AND Public Git Repository - simgrid.git/blobdiff - src/smpi/colls/smpi_nbc_impl.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[sonar] Remove custom destructors for surf/PropertyHolder.
[simgrid.git] / src / smpi / colls / smpi_nbc_impl.cpp
index 14781da4f518ba32b5b077387fc1fcd173094412..b8de308e125f4ec849ee24b00054025741737e43 100644 (file)
@@ -178,8 +178,10 @@ int Colls::iallgatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype, void
 }
 
 int Colls::ialltoall( void *sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request* request){
-int system_tag = COLL_TAG_ALLTOALL;
-  MPI_Aint lb = 0, sendext = 0, recvext = 0;
+  int system_tag   = COLL_TAG_ALLTOALL;
+  MPI_Aint lb      = 0;
+  MPI_Aint sendext = 0;
+  MPI_Aint recvext = 0;
 
   /* Initialize. */
   int rank = comm->rank();