aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorAlexander Smirnov <alex@ydb.tech>2025-04-25 00:51:48 +0000
committerAlexander Smirnov <alex@ydb.tech>2025-04-25 00:51:48 +0000
commit91f125ca5e39093a123ee9c2063a1af05c8c3c20 (patch)
tree36775185a5ec2eb15f8893f8a9c679eb77509805 /library/cpp
parent7914c485d4c7b74077e35e0a3de9967fcee71423 (diff)
parenta64165ec06c774a4d2815a7ccf8c7fd66921a2c1 (diff)
downloadydb-91f125ca5e39093a123ee9c2063a1af05c8c3c20.tar.gz
Merge branch 'rightlib' into merge-libs-250425-0050
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/yt/memory/ref_counted.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/yt/memory/ref_counted.h b/library/cpp/yt/memory/ref_counted.h
index 6abef3bf053..cd36b8a4044 100644
--- a/library/cpp/yt/memory/ref_counted.h
+++ b/library/cpp/yt/memory/ref_counted.h
@@ -63,7 +63,7 @@ public:
bool WeakUnref() const;
private:
- // NB: Must we 64 bit as TAtomicIntrusivePtr grabs refs in 64K batches.
+ // NB: Must be 64 bit as TAtomicIntrusivePtr grabs refs in 64K batches.
using TRefCount = i64;
mutable std::atomic<TRefCount> StrongCount_ = 1;
mutable std::atomic<TRefCount> WeakCount_ = 1;