Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Modern C++ use "auto".
[simgrid.git] / src / smpi / colls / allgather / allgather-smp-simple.cpp
index b279d4d9acacc498db9f52a607dd3614d31119ba..338f831e143eccd69c55db43921e6047721684a5 100644 (file)
@@ -76,9 +76,9 @@ int allgather__smp_simple(const void *send_buf, int scount,
 
   if (intra_rank == 0) {
     int num_req = (inter_comm_size - 1) * 2;
-    MPI_Request* reqs    = new MPI_Request[num_req];
+    auto* reqs           = new MPI_Request[num_req];
     MPI_Request* req_ptr = reqs;
-    MPI_Status* stat     = new MPI_Status[num_req];
+    auto* stat           = new MPI_Status[num_req];
 
     for (i = 1; i < inter_comm_size; i++) {