diff options
author | Alexander Smirnov <alex@ydb.tech> | 2025-04-25 17:35:21 +0000 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2025-04-25 17:35:21 +0000 |
commit | 065dd6eaff1c9cca457433a5247645b56a2c3295 (patch) | |
tree | 4aea54436b8ab2e43b40e9e7249d27ff5fe0de7b /library/cpp | |
parent | f9300394f511ac8d87ee5e9133f5c18f50200700 (diff) | |
parent | fc91d382a666f7c92a67ea61182da906ea08f1c4 (diff) | |
download | ydb-065dd6eaff1c9cca457433a5247645b56a2c3295.tar.gz |
Merge pull request #17709 from ydb-platform/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; |