]> AND Public Git Repository - simgrid.git/blobdiff - src/smpi/colls/reduce/reduce-flat-tree.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sort include lists according to clang-format.
[simgrid.git] / src / smpi / colls / reduce / reduce-flat-tree.cpp
index 76f3c5bc3643612d4381fe4b3c97ab4924f39f31..225b456d125851720f148f1fc82f3bc477c32a01 100644 (file)
@@ -1,12 +1,13 @@
-/* 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
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-#include "../colls_private.h"
+#include "../colls_private.hpp"
 //#include <star-reduction.c>
-
+namespace simgrid{
+namespace smpi{
 int
 Coll_reduce_flat_tree::reduce(void *sbuf, void *rbuf, int count,
                                  MPI_Datatype dtype, MPI_Op op,
@@ -66,3 +67,5 @@ Coll_reduce_flat_tree::reduce(void *sbuf, void *rbuf, int count,
   /* All done */
   return 0;
 }
+}
+}