diff options
author | familom <[email protected]> | 2022-02-10 16:49:49 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:49:49 +0300 |
commit | 9c61d3a2cac2a16341e82c613b030fcc03bf277a (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/json/json_writer.cpp | |
parent | f281aaf77179d27d6208b873e95ae6cd45765a63 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/json/json_writer.cpp')
-rw-r--r-- | library/cpp/json/json_writer.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/json/json_writer.cpp b/library/cpp/json/json_writer.cpp index 925e97dbb74..3d058bae360 100644 --- a/library/cpp/json/json_writer.cpp +++ b/library/cpp/json/json_writer.cpp @@ -45,7 +45,7 @@ namespace NJson { } } } - + void TJsonWriter::Flush() { if (Out) { Buf.FlushTo(Out); @@ -101,7 +101,7 @@ namespace NJson { void TJsonWriter::Write(unsigned long long value) { Buf.WriteULongLong(value); } - + void TJsonWriter::Write(bool value) { Buf.WriteBool(value); } @@ -145,5 +145,5 @@ namespace NJson { w.Write(val); w.Flush(); } - -} + +} |