X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7d4e135c16a74f7a443a518115fe8930694ddfb0..72d32c4e88a57f4786f62fec48a1bfa454adbff9:/src/smpi/colls/allreduce/allreduce-redbcast.cpp diff --git a/src/smpi/colls/allreduce/allreduce-redbcast.cpp b/src/smpi/colls/allreduce/allreduce-redbcast.cpp index 9d1e5f1036..dc2eea5e6b 100644 --- a/src/smpi/colls/allreduce/allreduce-redbcast.cpp +++ b/src/smpi/colls/allreduce/allreduce-redbcast.cpp @@ -5,8 +5,7 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include "../colls_private.hpp" -namespace simgrid{ -namespace smpi{ +namespace simgrid::smpi { int allreduce__redbcast(const void *buf, void *buf2, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) @@ -15,5 +14,4 @@ int allreduce__redbcast(const void *buf, void *buf2, int count, colls::bcast(buf2, count, datatype, 0, comm); return MPI_SUCCESS; } -} -} +} // namespace simgrid::smpi