Skip to content

Commit

Permalink
#276: active: add get
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander committed Feb 2, 2023
1 parent eb444cf commit dcc89a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vt/messaging/active.h
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ 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 sendMsg<MsgT>(dest, han, msg, no_tag);
return sendMsg<MsgT>(dest.get(), han, msg, no_tag);
}

/**
Expand Down

0 comments on commit dcc89a1

Please sign in to comment.