diff options
author | myltsev <myltsev@yandex-team.ru> | 2022-02-10 16:46:03 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:03 +0300 |
commit | 9166d66c30c23c9e85a7c88185a068987148d23f (patch) | |
tree | 421bdcec5755d9e441c485560aab5ab8d74c7475 /library/cpp/json/writer/json_value.cpp | |
parent | 8d3a5ed3a188a34167eaee54f1691ce5c9edf2f3 (diff) | |
download | ydb-9166d66c30c23c9e85a7c88185a068987148d23f.tar.gz |
Restoring authorship annotation for <myltsev@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/json/writer/json_value.cpp')
-rw-r--r-- | library/cpp/json/writer/json_value.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/json/writer/json_value.cpp b/library/cpp/json/writer/json_value.cpp index c61e8d1dc4..26fa35eed3 100644 --- a/library/cpp/json/writer/json_value.cpp +++ b/library/cpp/json/writer/json_value.cpp @@ -1,5 +1,5 @@ #include "json_value.h" -#include "json.h" +#include "json.h" #include <util/generic/ymath.h> #include <util/generic/ylimits.h> @@ -161,7 +161,7 @@ namespace NJson { Value.Double = value; } - TJsonValue::TJsonValue(TString value) { + TJsonValue::TJsonValue(TString value) { SetType(JSON_STRING); Value.String = std::move(value); } @@ -1100,6 +1100,6 @@ namespace NJson { template <> void Out<NJson::TJsonValue>(IOutputStream& out, const NJson::TJsonValue& v) { - NJsonWriter::TBuf buf(NJsonWriter::HEM_DONT_ESCAPE_HTML, &out); - buf.WriteJsonValue(&v); + NJsonWriter::TBuf buf(NJsonWriter::HEM_DONT_ESCAPE_HTML, &out); + buf.WriteJsonValue(&v); } |