diff options
author | babenko <[email protected]> | 2025-08-01 23:51:51 +0300 |
---|---|---|
committer | babenko <[email protected]> | 2025-08-02 00:08:32 +0300 |
commit | a1c9e57b5e7432e5ad8caad08b5923e3ec6c4125 (patch) | |
tree | 1c770fe59f8b329f1159d1a778e8279ed2405daa /library/cpp | |
parent | 5e971f676b02569e1f054c14ab46fc88d64646ca (diff) |
Fix TSharedRefArray::AreBitwiseEqual
commit_hash:84321c155a5d7ecb04ec7b33fc464a244eb55073
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/yt/memory/ref.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/yt/memory/ref.cpp b/library/cpp/yt/memory/ref.cpp index cafa276d013..67032586eff 100644 --- a/library/cpp/yt/memory/ref.cpp +++ b/library/cpp/yt/memory/ref.cpp @@ -437,7 +437,7 @@ bool TSharedRefArray::AreBitwiseEqual( return false; } for (size_t index = 0; index < lhs.Size(); ++index) { - if (TRef::AreBitwiseEqual(lhs[index], rhs[index])) { + if (!TRef::AreBitwiseEqual(lhs[index], rhs[index])) { return false; } } |