Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / src / smpi / colls / allreduce / allreduce-redbcast.cpp
index b408101..9ca1db6 100644 (file)
@@ -1,12 +1,11 @@
-/* Copyright (c) 2013-2021. The SimGrid Team.
+/* Copyright (c) 2013-2023. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
  * 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