diff options
author | innokentii <innokentii@yandex-team.com> | 2022-09-10 22:49:57 +0300 |
---|---|---|
committer | innokentii <innokentii@yandex-team.com> | 2022-09-10 22:49:57 +0300 |
commit | a8945929eb162f6910b228697c3d2db3b7cb2ca9 (patch) | |
tree | 4f6d161bffc1e27ec7bfe54827b31fa2365b7f96 /library/cpp | |
parent | 5a89de48da3bd0e557702e048c37f690f4263f3b (diff) | |
download | ydb-a8945929eb162f6910b228697c3d2db3b7cb2ca9.tar.gz |
Replace TString with TRope in TEvPut
replace TString with TRope in TEvPut
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/actors/util/rope.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/actors/util/rope.h b/library/cpp/actors/util/rope.h index 54b8e34412..fd4a5acdba 100644 --- a/library/cpp/actors/util/rope.h +++ b/library/cpp/actors/util/rope.h @@ -1060,7 +1060,7 @@ public: Erase(Begin(), End()); } - bool IsContiguous() { + bool IsContiguous() const { if(Begin() == End() || (++Begin() == End())) { return true; } |