diff options
author | pavook <pavook@yandex-team.com> | 2024-08-02 11:46:39 +0300 |
---|---|---|
committer | pavook <pavook@yandex-team.com> | 2024-08-02 11:59:44 +0300 |
commit | 99d0a5c88a19f2a5310c8bfe5ed63ef53e8ce00b (patch) | |
tree | 9abb8358e441ae7325e8d43ff1b5b1f097fb93d0 | |
parent | 92b85f69f24f17bdfe07ce6b79a1c89a6be6570b (diff) | |
download | ydb-99d0a5c88a19f2a5310c8bfe5ed63ef53e8ce00b.tar.gz |
Fix TStringBuilderStream
e88898a7dd45bf17aa4fc54bf91639a0fdabbca7
-rw-r--r-- | yt/yt/core/yson/string_builder_stream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt/yt/core/yson/string_builder_stream.h b/yt/yt/core/yson/string_builder_stream.h index b1e0aa4b14..ae87bdd2b3 100644 --- a/yt/yt/core/yson/string_builder_stream.h +++ b/yt/yt/core/yson/string_builder_stream.h @@ -12,10 +12,10 @@ class TStringBuilderStream final : public IOutputStream { public: - TStringBuilderStream(TStringBuilderBase* builder) noexcept; + explicit TStringBuilderStream(TStringBuilderBase* builder) noexcept; private: - TStringBuilderBase* Builder_; + TStringBuilderBase* const Builder_; void DoWrite(const void* data, size_t size) final; }; |