Skip to content

Commit

Permalink
Style
Browse files Browse the repository at this point in the history
commit_hash:f16e1675f29e70b0d911db64420f1cff65e6ec0e
  • Loading branch information
dgolear committed Feb 16, 2025
1 parent 84d956e commit d7d6214
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt/yt/client/api/rpc_proxy/row_batch_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const TNameTablePtr& TRowBatchReader::GetNameTable() const
TFuture<TSharedRange<TUnversionedRow>> TRowBatchReader::GetRows()
{
return Underlying_->Read()
.Apply(BIND([this, weakThis = MakeWeak(this)](const TSharedRef& block) {
.Apply(BIND([this, weakThis = MakeWeak(this)] (const TSharedRef& block) {
auto this_ = weakThis.Lock();
if (!this_) {
THROW_ERROR_EXCEPTION(NYT::EErrorCode::Canceled, "Reader destroyed");
Expand Down

0 comments on commit d7d6214

Please sign in to comment.