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 | f281aaf77179d27d6208b873e95ae6cd45765a63 (patch) | |
| tree | b4229c6ece98c855bd9821ef0b656042c29a8953 /library/cpp/json/json_writer.cpp | |
| parent | 53d07fb9e28d179add32cd299c9341bf8a231a31 (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 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 3d058bae360..925e97dbb74 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(); } - -} + +} |
