summaryrefslogtreecommitdiffstats
path: root/library/cpp/json/writer/json_value.h
diff options
context:
space:
mode:
authornae202 <[email protected]>2025-09-23 07:48:35 +0300
committernae202 <[email protected]>2025-09-23 08:03:21 +0300
commit63774bc851bb76e24f369ef4e0328e5f05edbb4b (patch)
treed3226ed9a5f200097949f6001a7e3183aff7adfa /library/cpp/json/writer/json_value.h
parentf4cbf746a0b6649479cfb305eceababced0ac10a (diff)
Style fix
commit_hash:d506e2a0f2770f3662449a3711e976499eb9ccbb
Diffstat (limited to 'library/cpp/json/writer/json_value.h')
-rw-r--r--library/cpp/json/writer/json_value.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/library/cpp/json/writer/json_value.h b/library/cpp/json/writer/json_value.h
index 789a629807c..ec919697dc7 100644
--- a/library/cpp/json/writer/json_value.h
+++ b/library/cpp/json/writer/json_value.h
@@ -120,7 +120,7 @@ namespace NJson {
const TMapType& GetMap() const Y_LIFETIME_BOUND;
const TArray& GetArray() const Y_LIFETIME_BOUND;
- //throwing TJsonException possible
+ // throwing TJsonException possible
bool GetBooleanSafe() const;
long long GetIntegerSafe() const;
unsigned long long GetUIntegerSafe() const;
@@ -273,7 +273,8 @@ namespace NJson {
public:
TJsonMap()
: TJsonValue(NJson::JSON_MAP)
- {}
+ {
+ }
TJsonMap(const std::initializer_list<std::pair<TString, TJsonValue>>& list)
: TJsonValue(NJson::JSON_MAP)
@@ -286,7 +287,8 @@ namespace NJson {
public:
TJsonArray()
: TJsonValue(NJson::JSON_ARRAY)
- {}
+ {
+ }
TJsonArray(const std::initializer_list<TJsonValue>& list)
: TJsonValue(NJson::JSON_ARRAY)
@@ -294,4 +296,4 @@ namespace NJson {
GetArraySafe() = TJsonValue::TArray(list);
}
};
-}
+} // namespace NJson