diff options
author | Alexander Smirnov <alex@ydb.tech> | 2025-04-25 00:51:48 +0000 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2025-04-25 00:51:48 +0000 |
commit | 91f125ca5e39093a123ee9c2063a1af05c8c3c20 (patch) | |
tree | 36775185a5ec2eb15f8893f8a9c679eb77509805 /library/cpp | |
parent | 7914c485d4c7b74077e35e0a3de9967fcee71423 (diff) | |
parent | a64165ec06c774a4d2815a7ccf8c7fd66921a2c1 (diff) | |
download | ydb-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.h | 2 |
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; |