diff options
author | gennadiy <[email protected]> | 2022-02-10 16:50:24 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:50:24 +0300 |
commit | ef1186a3ef541b1a1c08c06e9f826d45dddce8b0 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/json/json_writer.h | |
parent | e14f4b9a73a96b289ce54dd4d3f7818502fde5ce (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 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 ab45d256228..c7f5c9499a4 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); |