diff options
author | kostik <kostik@yandex-team.ru> | 2022-02-10 16:49:22 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:22 +0300 |
commit | f7619e21ba894db354477390e8fe96256a6eb14a (patch) | |
tree | b69d940766676eea8fd8d90570ed4f2783014d58 /library/cpp/yson/parser.cpp | |
parent | a6f6b22bda21d53d07bd2e0ff63a2b2abf69ede9 (diff) | |
download | ydb-f7619e21ba894db354477390e8fe96256a6eb14a.tar.gz |
Restoring authorship annotation for <kostik@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/yson/parser.cpp')
-rw-r--r-- | library/cpp/yson/parser.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/library/cpp/yson/parser.cpp b/library/cpp/yson/parser.cpp index 783f9b9047..95cfbb13b1 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 |