aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yson/parser_detail.h
diff options
context:
space:
mode:
authorlevysotsky <levysotsky@yandex-team.ru>2022-02-10 16:47:29 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:29 +0300
commit57f874ffc2a75047c1c4fea7a9fc86cb0f56ed50 (patch)
treeba6454f353979bb4bafaf230cafdf3e02ea120b2 /library/cpp/yson/parser_detail.h
parent23d4769f0fea97cfb1028710e50f2b5ecd0ac2c0 (diff)
downloadydb-57f874ffc2a75047c1c4fea7a9fc86cb0f56ed50.tar.gz
Restoring authorship annotation for <levysotsky@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/yson/parser_detail.h')
-rw-r--r--library/cpp/yson/parser_detail.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/yson/parser_detail.h b/library/cpp/yson/parser_detail.h
index 44223caf125..806212e440d 100644
--- a/library/cpp/yson/parser_detail.h
+++ b/library/cpp/yson/parser_detail.h
@@ -209,9 +209,9 @@ namespace NYson {
ch = TBase::template SkipSpaceAndGetChar<AllowFinish>();
if (ch == KeyValueSeparatorSymbol) {
TBase::Advance(1);
- } else {
+ } else {
ythrow TYsonException() << "Expected '" << KeyValueSeparatorSymbol << "' but '" << ch << "' found";
- }
+ }
ParseNode<AllowFinish>();
ch = TBase::template SkipSpaceAndGetChar<AllowFinish>();
if (ch == KeyedItemSeparatorSymbol) {