summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgolear <[email protected]>2025-02-17 01:50:54 +0300
committerdgolear <[email protected]>2025-02-17 02:08:12 +0300
commitd7d62149f9bae7bdb622300a54f678cc419c81f9 (patch)
tree7db279d928e1dd06a25d2e156ca2deeb9b41b273
parent84d956ec067ee14e5eba9d0b4a434a7dc9491dd8 (diff)
Style
commit_hash:f16e1675f29e70b0d911db64420f1cff65e6ec0e
-rw-r--r--yt/yt/client/api/rpc_proxy/row_batch_reader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/client/api/rpc_proxy/row_batch_reader.cpp b/yt/yt/client/api/rpc_proxy/row_batch_reader.cpp
index e0d95775b4f..b74ebb5ab28 100644
--- a/yt/yt/client/api/rpc_proxy/row_batch_reader.cpp
+++ b/yt/yt/client/api/rpc_proxy/row_batch_reader.cpp
@@ -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");