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

Fix assert

parent cc9a3487
No related branches found
No related tags found
1 merge request!11Feature/mpi
......@@ -113,7 +113,7 @@ class Messenger
static_assert(std::is_arithmetic_v<SendDataType>);
Assert((sent_array.size() % m_size) == 0);
Assert(recv_array.size() == recv_array.size());
Assert(sent_array.size() == recv_array.size());
const int count = sent_array.size()/m_size;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment