Skip to content

Commit

Permalink
#1024: Fix compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobDomagala committed Sep 20, 2020
1 parent 1ec673a commit 9cb6153
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vt/vrt/collection/manager.impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -897,8 +897,8 @@ messaging::PendingSend CollectionManager::broadcastMsgCollectiveImpl(
auto_registry::RegistryTypeEnum::RegVrtCollectionMember :
auto_registry::RegistryTypeEnum::RegVrtCollection;
auto msg_size = vt::serialization::MsgSizer<MsgT>::get(msg.get());
auto event =
theMsg()->makeTraceCreationSend(msg, handler, reg_type, msg_size, true);
auto event = theMsg()->makeTraceCreationSend(
msg, msg->getVrtHandler(), reg_type, msg_size, true);
msg->setFromTraceEvent(event);
#endif

Expand All @@ -907,7 +907,7 @@ messaging::PendingSend CollectionManager::broadcastMsgCollectiveImpl(
msg->setCat(balance::CommCategory::NodeToCollection);
#endif

auto const cur_epoch = theMsg()->setupEpochMsg(msg);
theMsg()->setupEpochMsg(msg);

return messaging::PendingSend(
msg, [proxy](MsgSharedPtr<BaseMsgType>& msgIn) {
Expand Down

0 comments on commit 9cb6153

Please sign in to comment.