Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
lll-phill-lll committed Aug 6, 2024
1 parent 525b422 commit 16ea3e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ TRuntimeNode Combine(TProgramBuilder& pb, TRuntimeNode stream, std::function<TRu
template<bool SPILLING>
TRuntimeNode WideLastCombiner(TProgramBuilder& pb, TRuntimeNode flow, const TProgramBuilder::TWideLambda& extractor, const TProgramBuilder::TBinaryWideLambda& init, const TProgramBuilder::TTernaryWideLambda& update, const TProgramBuilder::TBinaryWideLambda& finish) {
return SPILLING ?
pb.WideLastCombinerWithSpilling(flow, extractor, init, update, finish, {}, {}):
pb.WideLastCombinerWithSpilling(flow, extractor, init, update, finish, [&](TRuntimeNode::TList, TRuntimeNode::TList outputs) { return outputs; }, [&](TRuntimeNode::TList, TRuntimeNode::TList outputs) { return outputs; }):
pb.WideLastCombiner(flow, extractor, init, update, finish);
}

Expand Down

0 comments on commit 16ea3e0

Please sign in to comment.