diff options
author | qkrorlqr <qkrorlqr@yandex-team.ru> | 2022-02-10 16:47:20 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:20 +0300 |
commit | 9b89266638b10d40309e31dcb7caa2fc52b2aefd (patch) | |
tree | aaf0d6ece270940a4f208e4202e4a37a15ce05b7 /library/cpp/yson/writer.h | |
parent | 47af3b5bf148ddab250833ec454d30d7c4930c31 (diff) | |
download | ydb-9b89266638b10d40309e31dcb7caa2fc52b2aefd.tar.gz |
Restoring authorship annotation for <qkrorlqr@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/yson/writer.h')
-rw-r--r-- | library/cpp/yson/writer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/yson/writer.h b/library/cpp/yson/writer.h index 40f5d7d501..79e19d0df5 100644 --- a/library/cpp/yson/writer.h +++ b/library/cpp/yson/writer.h @@ -23,14 +23,14 @@ namespace NYson { friend class TYsonWriter; }; - + public: TYsonWriter( IOutputStream* stream, EYsonFormat format = EYsonFormat::Binary, EYsonType type = ::NYson::EYsonType::Node, bool enableRaw = false); - + void OnStringScalar(TStringBuf value) override; void OnInt64Scalar(i64 value) override; void OnUint64Scalar(ui64 value) override; @@ -59,7 +59,7 @@ namespace NYson { EYsonFormat Format; EYsonType Type; bool EnableRaw; - + int Depth; bool BeforeFirstItem; |