X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5b52e25dc0e3d17cdbe0323f922d7bb4fc238af3..04ad4b7ab779a793f594e0910632f12a511d419a:/src/smpi/smpi_shared.cpp diff --git a/src/smpi/smpi_shared.cpp b/src/smpi/smpi_shared.cpp index b9e85fa779..09d9030212 100644 --- a/src/smpi/smpi_shared.cpp +++ b/src/smpi/smpi_shared.cpp @@ -363,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) {