diff options
author | dartraiden <wowemuh@gmail.com> | 2018-11-07 14:54:36 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2018-11-07 14:54:36 +0300 |
commit | 876075a808fcc61e2d859e217937fe64ff09aa0e (patch) | |
tree | bda14ceb27861c9f7bf32b3ccbca8fb600336db3 /libs | |
parent | deb3dda96648e7ae5b83c6ea3d35a92a0c1476fa (diff) |
some files contains LF and CRLF simultaneously
Diffstat (limited to 'libs')
-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;
+}
|