Skip to content

Commit

Permalink
#276: pipe: make send more explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander committed Jun 13, 2023
1 parent d671855 commit cc20c21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vt/collective/reduce/operators/default_op.impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ template <typename MsgT, typename Op, typename ActOp>
// We need to force the type the the more specific one here
auto cb = msg->getMsgCallback();
auto typed_cb = reinterpret_cast<Callback<MsgT>*>(&cb);
typed_cb->send(msg);
typed_cb->sendMsg(msg);
}
} else if (msg->root_handler_ != uninitialized_handler) {
auto_registry::getAutoHandler(msg->root_handler_)->dispatch(msg, nullptr);
Expand Down

0 comments on commit cc20c21

Please sign in to comment.