Skip to content

Commit

Permalink
join_node::try_get stub
Browse files Browse the repository at this point in the history
  • Loading branch information
kboyarinov committed Jun 25, 2024
1 parent ed5d05b commit 811b9b9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions include/oneapi/tbb/detail/_flow_graph_join_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -1190,6 +1190,13 @@
return op_data.status == SUCCEEDED;
}

#if __TBB_PREVIEW_FLOW_GRAPH_TRY_PUT_AND_WAIT
// TODO: implement try_get with metainfo for join_node
bool try_get( output_type &v, message_metainfo& ) override {
return try_get(v);
}
#endif

protected:
void reset_node(reset_flags f) override {
input_ports_type::reset(f);
Expand Down

0 comments on commit 811b9b9

Please sign in to comment.