diff options
Diffstat (limited to 'libs/libjson/src/stdafx.cxx')
-rw-r--r-- | libs/libjson/src/stdafx.cxx | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/libs/libjson/src/stdafx.cxx b/libs/libjson/src/stdafx.cxx index 32eb3c894f..bc86a96773 100644 --- a/libs/libjson/src/stdafx.cxx +++ b/libs/libjson/src/stdafx.cxx @@ -52,18 +52,18 @@ LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const WCHAR_PARAM ¶m) return json;
}
-LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const NULL_PARAM ¶m) -{ - JSONNode newOne(JSON_NULL); - newOne.set_name(param.szName); - json.push_back(newOne); - return json; +LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const NULL_PARAM ¶m)
+{
+ JSONNode newOne(JSON_NULL);
+ newOne.set_name(param.szName);
+ json.push_back(newOne);
+ return json;
}
-LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const JSON_PARAM ¶m) -{ - JSONNode newOne(param.node); - newOne.set_name(param.szName); - json.push_back(newOne); - return json; -} +LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const JSON_PARAM ¶m)
+{
+ JSONNode newOne(param.node);
+ newOne.set_name(param.szName);
+ json.push_back(newOne);
+ return json;
+}
|