diff options
author | gennadiy <gennadiy@yandex-team.ru> | 2022-02-10 16:50:24 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:24 +0300 |
commit | e14f4b9a73a96b289ce54dd4d3f7818502fde5ce (patch) | |
tree | f998f965a15fb9c2b517c512f03824843b2828aa /library/cpp/json/json_writer.h | |
parent | a01c1f7b71b4422f01b11d9ea45bfd88e228c968 (diff) | |
download | ydb-e14f4b9a73a96b289ce54dd4d3f7818502fde5ce.tar.gz |
Restoring authorship annotation for <gennadiy@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/json/json_writer.h')
-rw-r--r-- | library/cpp/json/json_writer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/json/json_writer.h b/library/cpp/json/json_writer.h index c7f5c9499a4..ab45d256228 100644 --- a/library/cpp/json/json_writer.h +++ b/library/cpp/json/json_writer.h @@ -183,12 +183,12 @@ namespace NJson { void Reset(const NJsonWriter::TBufState& from) { return Buf.Reset(from); } - + void Reset(NJsonWriter::TBufState&& from) { return Buf.Reset(std::move(from)); } }; - + void WriteJson(IOutputStream*, const TJsonValue*, bool formatOutput = false, bool sortkeys = false, bool validateUtf8 = true); TString WriteJson(const TJsonValue*, bool formatOutput = true, bool sortkeys = false, bool validateUtf8 = false); TString WriteJson(const TJsonValue&, bool formatOutput = true, bool sortkeys = false, bool validateUtf8 = false); |