diff options
author | familom <familom@yandex-team.ru> | 2022-02-10 16:49:49 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:49 +0300 |
commit | f281aaf77179d27d6208b873e95ae6cd45765a63 (patch) | |
tree | b4229c6ece98c855bd9821ef0b656042c29a8953 /library/cpp/json/writer/json_value.h | |
parent | 53d07fb9e28d179add32cd299c9341bf8a231a31 (diff) | |
download | ydb-f281aaf77179d27d6208b873e95ae6cd45765a63.tar.gz |
Restoring authorship annotation for <familom@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/json/writer/json_value.h')
-rw-r--r-- | library/cpp/json/writer/json_value.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/json/writer/json_value.h b/library/cpp/json/writer/json_value.h index 3f0f50bc4c..d777d07062 100644 --- a/library/cpp/json/writer/json_value.h +++ b/library/cpp/json/writer/json_value.h @@ -170,10 +170,10 @@ namespace NJson { /// @return true if JSON_UINTEGER or (JSON_INTEGER and Value >= 0) bool IsUInteger() const noexcept; - + bool Has(const TStringBuf& key) const noexcept; bool Has(size_t key) const noexcept; - + void Scan(IScanCallback& callback); /// Non-robust comparison. @@ -182,9 +182,9 @@ namespace NJson { bool operator!=(const TJsonValue& rhs) const { return !(*this == rhs); } - + void Swap(TJsonValue& rhs) noexcept; - + // save using util/ysaveload.h serialization (not to JSON stream) void Save(IOutputStream* s) const; |