Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ok, I stop trying to please sonar.
[simgrid.git] / src / smpi / colls / allgather / allgather-GB.cpp
index 88bc100..ada4ae3 100644 (file)
@@ -6,6 +6,8 @@
 
 #include "../colls_private.h"
 
+namespace simgrid{
+namespace smpi{
 // Allgather - gather/bcast algorithm
 int Coll_allgather_GB::allgather(void *send_buff, int send_count,
                                  MPI_Datatype send_type, void *recv_buff,
@@ -20,3 +22,6 @@ int Coll_allgather_GB::allgather(void *send_buff, int send_count,
 
   return MPI_SUCCESS;
 }
+
+}
+}