Small likely typo in https://github.com/LLNL/ygm/blob/v0.7-dev/include/ygm/detail/comm.ipp#L971
Likely meant to be: received_to_return |= local_process_incoming(); to capture the return value of local_process_incoming, alternatively this could be just local_process_incoming(); if the return value is not needed. The return value isn't stored or used but appears as it is.
Small likely typo in https://github.com/LLNL/ygm/blob/v0.7-dev/include/ygm/detail/comm.ipp#L971 Likely meant to be:
received_to_return |= local_process_incoming();
to capture the return value of local_process_incoming, alternatively this could be justlocal_process_incoming();
if the return value is not needed. The return value isn't stored or used but appears as it is.