diff options
author | Mikhail Borisov <borisov.mikhail@gmail.com> | 2022-02-10 16:45:40 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:40 +0300 |
commit | 5d50718e66d9c037dc587a0211110b7d25a66185 (patch) | |
tree | e98df59de24d2ef7c77baed9f41e4875a2fef972 /library/cpp/yson/node/node.cpp | |
parent | a6a92afe03e02795227d2641b49819b687f088f8 (diff) | |
download | ydb-5d50718e66d9c037dc587a0211110b7d25a66185.tar.gz |
Restoring authorship annotation for Mikhail Borisov <borisov.mikhail@gmail.com>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/yson/node/node.cpp')
-rw-r--r-- | library/cpp/yson/node/node.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/yson/node/node.cpp b/library/cpp/yson/node/node.cpp index 5917d73fbc..b39e070718 100644 --- a/library/cpp/yson/node/node.cpp +++ b/library/cpp/yson/node/node.cpp @@ -442,7 +442,7 @@ const TNode& TNode::At(size_t index) const { CheckType(List); const auto& list = std::get<TListType>(Value_); if (index >= list.size()) { - ythrow TLookupError() << "List out-of-range: requested index=" << index << ", but size=" << list.size(); + ythrow TLookupError() << "List out-of-range: requested index=" << index << ", but size=" << list.size(); } return list[index]; } @@ -451,7 +451,7 @@ TNode& TNode::At(size_t index) { CheckType(List); auto& list = std::get<TListType>(Value_); if (index >= list.size()) { - ythrow TLookupError() << "List out-of-range: requested index=" << index << ", but size=" << list.size(); + ythrow TLookupError() << "List out-of-range: requested index=" << index << ", but size=" << list.size(); } return list[index]; } @@ -545,7 +545,7 @@ const TNode& TNode::At(const TStringBuf key) const { const auto& map = std::get<TMapType>(Value_); TMapType::const_iterator i = map.find(key); if (i == map.end()) { - ythrow TLookupError() << "Cannot find key " << key; + ythrow TLookupError() << "Cannot find key " << key; } else { return i->second; } @@ -556,7 +556,7 @@ TNode& TNode::At(const TStringBuf key) { auto& map = std::get<TMapType>(Value_); TMapType::iterator i = map.find(key); if (i == map.end()) { - ythrow TLookupError() << "Cannot find key " << key; + ythrow TLookupError() << "Cannot find key " << key; } else { return i->second; } |