Skip to content

Commit

Permalink
#276: Clarify boolean literal function argument
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilMiller committed Mar 10, 2023
1 parent 8b84b22 commit cc0c1fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vt/messaging/active.h
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,8 @@ struct ActiveMessenger : runtime::component::PollableComponent<ActiveMessenger>
using MsgT = ParamMsg<Tuple>;
auto msg = vt::makeMessage<MsgT>(std::forward<Params>(params)...);
auto han = auto_registry::makeAutoHandlerParam<decltype(f), f, MsgT>();
return broadcastMsg<MsgT>(han, msg, true, no_tag);
constexpr bool deliver_to_sender = true;
return broadcastMsg<MsgT>(han, msg, deliver_to_sender, no_tag);
}

/**
Expand Down

0 comments on commit cc0c1fc

Please sign in to comment.