Skip to content
Snippets Groups Projects
Commit 1481f880 authored by Christian Engwer's avatar Christian Engwer
Browse files

[parallel,bugfix] fix comments, # is not C++

@Markus: too much CMake?! ;-)
parent 0c697d8d
No related branches found
No related tags found
No related merge requests found
......@@ -1438,7 +1438,7 @@ namespace Dune
MPI_BYTE, info->first, commTag_, communicator_,
recvRequests+i);
else
# Nothing to receive -> set request to inactive
// Nothing to receive -> set request to inactive
recvRequests[i]=MPI_REQUEST_NULL;
}else{
assert(info->second.first.start_*sizeof(typename CommPolicy<Data>::IndexedType)+info->second.first.size_ <= recvBufferSize );
......@@ -1448,7 +1448,7 @@ namespace Dune
MPI_BYTE, info->first, commTag_, communicator_,
recvRequests+i);
else
# Nothing to receive -> set request to inactive
// Nothing to receive -> set request to inactive
recvRequests[i]=MPI_REQUEST_NULL;
}
}
......@@ -1465,7 +1465,7 @@ namespace Dune
MPI_BYTE, info->first, commTag_, communicator_,
sendRequests+i);
else
# Nothing to send -> set request to inactive
// Nothing to send -> set request to inactive
sendRequests[i]=MPI_REQUEST_NULL;
}else{
assert(info->second.second.start_*sizeof(typename CommPolicy<Data>::IndexedType)+info->second.second.size_ <= sendBufferSize );
......@@ -1475,7 +1475,7 @@ namespace Dune
MPI_BYTE, info->first, commTag_, communicator_,
sendRequests+i);
else
# Nothing to send -> set request to inactive
// Nothing to send -> set request to inactive
sendRequests[i]=MPI_REQUEST_NULL;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment