X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9104957deccc59e0e804215d5db498fabfd40d29..ea74f5d95928a521a588737e81f1de94eef25d19:/src/smpi/colls/allgather/allgather-smp-simple.cpp diff --git a/src/smpi/colls/allgather/allgather-smp-simple.cpp b/src/smpi/colls/allgather/allgather-smp-simple.cpp index b279d4d9ac..71180e04ee 100644 --- a/src/smpi/colls/allgather/allgather-smp-simple.cpp +++ b/src/smpi/colls/allgather/allgather-smp-simple.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2020. The SimGrid Team. +/* Copyright (c) 2013-2022. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -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++) {