diff options
author | a-sidorin <[email protected]> | 2022-02-10 16:50:02 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:50:02 +0300 |
commit | 9473a88c91129dfe21343af486bebb93a0b33291 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/scheme/scheme.cpp | |
parent | 4ffc252d74adad4b93762976940ef53012cb98df (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/scheme/scheme.cpp')
-rw-r--r-- | library/cpp/scheme/scheme.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/scheme/scheme.cpp b/library/cpp/scheme/scheme.cpp index 1d706798a8b..3efd116d4f1 100644 --- a/library/cpp/scheme/scheme.cpp +++ b/library/cpp/scheme/scheme.cpp @@ -418,14 +418,14 @@ namespace NSc { core.SetString(val.GetString()); break; case NJson::JSON_ARRAY: { - core.SetArray(); + core.SetArray(); for (const auto& item : val.GetArray()) { FromJsonValue(core.Push(), item); } break; } case NJson::JSON_MAP: { - core.SetDict(); + core.SetDict(); for (const auto& item : val.GetMap()) { FromJsonValue(core.Add(item.first), item.second); } |