Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
reduce the verbosity of that message
[simgrid.git] / src / smpi / smpi_status.cpp
index 2d6caf9..eebea33 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2007-2015. The SimGrid Team.
+/* Copyright (c) 2007-2017. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -7,6 +7,9 @@
 #include "private.h"
 #include "src/simix/smx_private.h"
 
+namespace simgrid{
+namespace smpi{
+
 void Status::empty(MPI_Status * status)
 {
   if(status != MPI_STATUS_IGNORE) {
@@ -21,3 +24,6 @@ int Status::get_count(MPI_Status * status, MPI_Datatype datatype)
 {
   return status->count / datatype->size();
 }
+
+}
+}