summaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorakhropov <[email protected]>2025-10-11 13:30:28 +0300
committerakhropov <[email protected]>2025-10-11 13:48:11 +0300
commit31c19b13025472f6ce0023b390930e292a670181 (patch)
tree653e0cfd7848ec539712b6ab8b23d1162a002dae /library/cpp
parent8540915fec03da7728762e86b134048a4201e4c6 (diff)
ysize -> size.
commit_hash:5be5816fa0d06087b51636b3acfaf53350e750da
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/threading/local_executor/local_executor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/threading/local_executor/local_executor.cpp b/library/cpp/threading/local_executor/local_executor.cpp
index 79361b3a769..af998300bff 100644
--- a/library/cpp/threading/local_executor/local_executor.cpp
+++ b/library/cpp/threading/local_executor/local_executor.cpp
@@ -62,7 +62,7 @@ namespace {
TVector<NThreading::TFuture<void>> GetFutures() const {
TVector<NThreading::TFuture<void>> out;
- out.reserve(Promises.ysize());
+ out.reserve(Promises.size());
for (auto& promise : Promises) {
out.push_back(promise.GetFuture());
}