X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1dd9c4bedb625b65e76b536cae4c2247423dce91..4834cb24245a3a7355ab8586f5177a774c545fb7:/src/smpi/smpi_shared.cpp diff --git a/src/smpi/smpi_shared.cpp b/src/smpi/smpi_shared.cpp index 02f5194dfd..09d9030212 100644 --- a/src/smpi/smpi_shared.cpp +++ b/src/smpi/smpi_shared.cpp @@ -34,11 +34,13 @@ * ---- */ #include +#include #include "private.h" #include "private.hpp" #include "smpi/smpi_shared_malloc.hpp" #include "xbt/dict.h" +#include "xbt/ex.hpp" #include #include @@ -361,7 +363,8 @@ std::vector> shift_and_frame_private_blocks(const std: std::vector> merge_private_blocks(std::vector> src, std::vector> dst) { std::vector> result; - unsigned i_src=0, i_dst=0; + unsigned i_src = 0; + unsigned i_dst = 0; while(i_src < src.size() && i_dst < dst.size()) { std::pair block; if(src[i_src].second <= dst[i_dst].first) {