aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/json/writer/json.h
diff options
context:
space:
mode:
authoregoroveug <egoroveug@yandex-team.ru>2022-02-10 16:50:25 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:25 +0300
commit3765cd96a63a8b9571d48c480806ce35989ca19e (patch)
tree7812e2c79af8114bfd003eb33a983891eddafa84 /library/cpp/json/writer/json.h
parentec545677cb3d75384c18bb2307a912b4d0e7bbb1 (diff)
downloadydb-3765cd96a63a8b9571d48c480806ce35989ca19e.tar.gz
Restoring authorship annotation for <egoroveug@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/json/writer/json.h')
-rw-r--r--library/cpp/json/writer/json.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/json/writer/json.h b/library/cpp/json/writer/json.h
index 0aae2531b9..ed5b981a37 100644
--- a/library/cpp/json/writer/json.h
+++ b/library/cpp/json/writer/json.h
@@ -6,7 +6,7 @@
#include <util/generic/vector.h>
#include <util/generic/yexception.h>
#include <util/stream/str.h>
-#include <util/string/cast.h>
+#include <util/string/cast.h>
namespace NJson {
class TJsonValue;
@@ -48,8 +48,8 @@ namespace NJsonWriter {
TValueContext WriteInt(int i);
TValueContext WriteLongLong(long long i);
TValueContext WriteULongLong(unsigned long long i);
- TValueContext WriteFloat(float f, EFloatToStringMode mode = PREC_NDIGITS, int ndigits = 6);
- TValueContext WriteDouble(double f, EFloatToStringMode mode = PREC_NDIGITS, int ndigits = 10);
+ TValueContext WriteFloat(float f, EFloatToStringMode mode = PREC_NDIGITS, int ndigits = 6);
+ TValueContext WriteDouble(double f, EFloatToStringMode mode = PREC_NDIGITS, int ndigits = 10);
TValueContext WriteBool(bool b);
TValueContext WriteNull();
TValueContext WriteJsonValue(const NJson::TJsonValue* value, bool sortKeys = false, EFloatToStringMode mode = PREC_NDIGITS, int ndigits = 10);
@@ -176,7 +176,7 @@ namespace NJsonWriter {
TOutContext WriteDouble(double, EFloatToStringMode, int ndigits);
TOutContext WriteJsonValue(const NJson::TJsonValue* value, bool sortKeys = false);
TOutContext UnsafeWriteValue(const TStringBuf&);
-
+
TValueContext BeginList();
TPairContext BeginObject();