diff options
author | nsofya <nsofya@yandex-team.ru> | 2022-02-10 16:49:52 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:52 +0300 |
commit | 2ea6d2c7415473747379b1c65468241b431057ad (patch) | |
tree | 667f873e5a94ca0042984be80442f34aac887f7d /library/cpp/json | |
parent | edee5b99e1eec042f46725b89dcd81ea7e41d663 (diff) | |
download | ydb-2ea6d2c7415473747379b1c65468241b431057ad.tar.gz |
Restoring authorship annotation for <nsofya@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/json')
-rw-r--r-- | library/cpp/json/writer/json_value.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/json/writer/json_value.cpp b/library/cpp/json/writer/json_value.cpp index c61e8d1dc4..41835e1528 100644 --- a/library/cpp/json/writer/json_value.cpp +++ b/library/cpp/json/writer/json_value.cpp @@ -257,13 +257,13 @@ namespace NJson { BackChecks(); return Value.Array->back(); } - + TJsonValue& TJsonValue::AppendValue(const TJsonValue& value) { SetType(JSON_ARRAY); Value.Array->push_back(value); return Value.Array->back(); } - + TJsonValue& TJsonValue::AppendValue(TJsonValue&& value) { SetType(JSON_ARRAY); Value.Array->push_back(std::move(value)); |