diff options
author | udovichenko-r <udovichenko-r@yandex-team.ru> | 2022-02-10 16:49:21 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:21 +0300 |
commit | d7e4eaec9d325e188dabb3eb1949a32a5229e9ce (patch) | |
tree | 75f143caa4e1e35b760846b22310ede3212d7f63 /library/cpp/yson | |
parent | 027f7b7f6644e258a5840869b9b82c79e1ebeee0 (diff) | |
download | ydb-d7e4eaec9d325e188dabb3eb1949a32a5229e9ce.tar.gz |
Restoring authorship annotation for <udovichenko-r@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/yson')
-rw-r--r-- | library/cpp/yson/node/node.cpp | 6 | ||||
-rw-r--r-- | library/cpp/yson/writer.cpp | 2 | ||||
-rw-r--r-- | library/cpp/yson/writer.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/yson/node/node.cpp b/library/cpp/yson/node/node.cpp index b39e070718..c832447d3b 100644 --- a/library/cpp/yson/node/node.cpp +++ b/library/cpp/yson/node/node.cpp @@ -878,9 +878,9 @@ bool operator==(const TNode& lhs, const TNode& rhs) if (lhs.Attributes_) { if (rhs.Attributes_) { - if (*lhs.Attributes_ != *rhs.Attributes_) { - return false; - } + if (*lhs.Attributes_ != *rhs.Attributes_) { + return false; + } } else { return false; } diff --git a/library/cpp/yson/writer.cpp b/library/cpp/yson/writer.cpp index 054459f9f5..d1dc7c672e 100644 --- a/library/cpp/yson/writer.cpp +++ b/library/cpp/yson/writer.cpp @@ -341,7 +341,7 @@ namespace NYson { //////////////////////////////////////////////////////////////////////////////// void ReformatYsonStream( - IInputStream* input, + IInputStream* input, IOutputStream* output, EYsonFormat format, EYsonType type) { diff --git a/library/cpp/yson/writer.h b/library/cpp/yson/writer.h index 40f5d7d501..722ebe5e70 100644 --- a/library/cpp/yson/writer.h +++ b/library/cpp/yson/writer.h @@ -79,7 +79,7 @@ namespace NYson { //////////////////////////////////////////////////////////////////////////////// void ReformatYsonStream( - IInputStream* input, + IInputStream* input, IOutputStream* output, EYsonFormat format = EYsonFormat::Binary, EYsonType type = ::NYson::EYsonType::Node); |