diff options
author | Alexander Smirnov <alex@ydb.tech> | 2025-02-05 00:51:36 +0000 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2025-02-05 00:51:36 +0000 |
commit | 21c282998b41e7edec2cae094f996be2feb7eb37 (patch) | |
tree | 985f632cd3809ddc5ba06449701db2f1a2ae48c3 /library/cpp | |
parent | 8587d8117d7b1b539a00f9e214a749d1d538691b (diff) | |
parent | 1d3a1b1e4201d7a3cbb150b881aeffc3535c2995 (diff) | |
download | ydb-21c282998b41e7edec2cae094f996be2feb7eb37.tar.gz |
Merge branch 'rightlib' into merge-libs-250205-0050
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/yt/memory/shared_range.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/yt/memory/shared_range.h b/library/cpp/yt/memory/shared_range.h index 113378670a1..ffe28a7094c 100644 --- a/library/cpp/yt/memory/shared_range.h +++ b/library/cpp/yt/memory/shared_range.h @@ -58,7 +58,7 @@ public: //! Constructs an empty TSharedRange from a nullptr expression. TSharedRange(std::nullptr_t) - : TRange<T>(nullptr, 0UL) + : TRange<T>(nullptr, static_cast<size_t>(0)) , Holder_(nullptr) { } |