Skip to content
Snippets Groups Projects
Commit e91001ec authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Fix signed/unsigned comparison warnings

parent 06d133d5
No related branches found
No related tags found
1 merge request!11Feature/mpi
...@@ -46,7 +46,8 @@ void test_allToAll() ...@@ -46,7 +46,8 @@ void test_allToAll()
auto exchanged_array = parallel::allToAll(data_array); auto exchanged_array = parallel::allToAll(data_array);
for (size_t i=0; i< data_array.size(); ++i) { for (size_t i=0; i< data_array.size(); ++i) {
REQUIRE(exchanged_array[i] == i); const size_t value = exchanged_array[i];
REQUIRE(value == i);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment