Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
please codacy: use long form of negation in C++
[simgrid.git] / src / smpi / colls / scatter / scatter-ompi.cpp
index 04bf1ae..9fc81d4 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2013-2014. The SimGrid Team.
+/* Copyright (c) 2013-2017. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -23,6 +23,9 @@
 #include "../colls_private.h"
 #include "../coll_tuned_topo.h"
 
+namespace simgrid{
+namespace smpi{
+
 
 int
 Coll_scatter_ompi_binomial::scatter(void *sbuf, int scount,
@@ -156,7 +159,7 @@ Coll_scatter_ompi_binomial::scatter(void *sbuf, int scount,
 
     if (NULL != tempbuf)
       smpi_free_tmp_buffer(tempbuf);
-    //!FIXME : store the tree, as done in ompi, instead of calculating it each time ?
+    // not FIXME : store the tree, as done in ompi, instead of calculating it each time ?
     xbt_free(bmtree);
 
     return MPI_SUCCESS;
@@ -249,3 +252,6 @@ Coll_scatter_ompi_basic_linear::scatter(void *sbuf, int scount,
 
     return MPI_SUCCESS;
 }
+
+}
+}