X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d2a4b127c5db9640480b471e03a5044098e0a23f..a619bfb1b9a3769e775975828e35541111290665:/src/smpi/smpi_status.cpp diff --git a/src/smpi/smpi_status.cpp b/src/smpi/smpi_status.cpp index 2d6caf9144..22c84bbf2f 100644 --- a/src/smpi/smpi_status.cpp +++ b/src/smpi/smpi_status.cpp @@ -1,11 +1,15 @@ -/* Copyright (c) 2007-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2007-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 "private.h" #include "src/simix/smx_private.h" +#include "src/smpi/smpi_datatype.hpp" +#include "src/smpi/smpi_status.hpp" + +namespace simgrid{ +namespace smpi{ void Status::empty(MPI_Status * status) { @@ -21,3 +25,6 @@ int Status::get_count(MPI_Status * status, MPI_Datatype datatype) { return status->count / datatype->size(); } + +} +}