aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorAlexander Smirnov <alex@ydb.tech>2025-02-05 00:51:36 +0000
committerAlexander Smirnov <alex@ydb.tech>2025-02-05 00:51:36 +0000
commit21c282998b41e7edec2cae094f996be2feb7eb37 (patch)
tree985f632cd3809ddc5ba06449701db2f1a2ae48c3 /library/cpp
parent8587d8117d7b1b539a00f9e214a749d1d538691b (diff)
parent1d3a1b1e4201d7a3cbb150b881aeffc3535c2995 (diff)
downloadydb-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.h2
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)
{ }