aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yson/parser.cpp
diff options
context:
space:
mode:
authorkostik <kostik@yandex-team.ru>2022-02-10 16:49:22 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:22 +0300
commit89516f2fd8e143755ba2973385407d77676b18a0 (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/yson/parser.cpp
parentf7619e21ba894db354477390e8fe96256a6eb14a (diff)
downloadydb-89516f2fd8e143755ba2973385407d77676b18a0.tar.gz
Restoring authorship annotation for <kostik@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/yson/parser.cpp')
-rw-r--r--library/cpp/yson/parser.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/library/cpp/yson/parser.cpp b/library/cpp/yson/parser.cpp
index 95cfbb13b1..783f9b9047 100644
--- a/library/cpp/yson/parser.cpp
+++ b/library/cpp/yson/parser.cpp
@@ -161,19 +161,19 @@ namespace NYson {
TYsonListParser::TYsonListParser(
NYT::NYson::IYsonConsumer* consumer,
IInputStream* stream,
- bool enableLinePositionInfo,
+ bool enableLinePositionInfo,
TMaybe<ui64> memoryLimit)
: Impl(new TImpl(consumer, stream, enableLinePositionInfo, memoryLimit))
- {
- }
-
+ {
+ }
+
TYsonListParser::~TYsonListParser() {
}
-
+
bool TYsonListParser::Parse() {
return Impl->Parse();
}
-
+
////////////////////////////////////////////////////////////////////////////////
-
+
} // namespace NYson