X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b7ed19dfcc221d7b3eca182abb5c4a3946671172..77bbf3027c4240a2e833209a3a3f186589da8577:/src/smpi/colls/alltoall/alltoall-pair-one-barrier.cpp diff --git a/src/smpi/colls/alltoall/alltoall-pair-one-barrier.cpp b/src/smpi/colls/alltoall/alltoall-pair-one-barrier.cpp index c18406e5ef..10dc6567f9 100644 --- a/src/smpi/colls/alltoall/alltoall-pair-one-barrier.cpp +++ b/src/smpi/colls/alltoall/alltoall-pair-one-barrier.cpp @@ -1,10 +1,10 @@ -/* 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" /***************************************************************************** * Function: alltoall_pair @@ -26,6 +26,8 @@ * Auther: Ahmad Faraj ****************************************************************************/ +namespace simgrid{ +namespace smpi{ int Coll_alltoall_pair_one_barrier::alltoall(void *send_buff, int send_count, MPI_Datatype send_type, @@ -63,3 +65,5 @@ Coll_alltoall_pair_one_barrier::alltoall(void *send_buff, int send_count, return MPI_SUCCESS; } +} +}