summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2018-11-07 14:54:36 +0300
committerdartraiden <wowemuh@gmail.com>2018-11-07 14:54:36 +0300
commit876075a808fcc61e2d859e217937fe64ff09aa0e (patch)
treebda14ceb27861c9f7bf32b3ccbca8fb600336db3 /libs
parentdeb3dda96648e7ae5b83c6ea3d35a92a0c1476fa (diff)
some files contains LF and CRLF simultaneously
Diffstat (limited to 'libs')
-rw-r--r--libs/libjson/src/stdafx.cxx26
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 &param)
return json;
}
-LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const NULL_PARAM &param)
-{
- JSONNode newOne(JSON_NULL);
- newOne.set_name(param.szName);
- json.push_back(newOne);
- return json;
+LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const NULL_PARAM &param)
+{
+ JSONNode newOne(JSON_NULL);
+ newOne.set_name(param.szName);
+ json.push_back(newOne);
+ return json;
}
-LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const JSON_PARAM &param)
-{
- JSONNode newOne(param.node);
- newOne.set_name(param.szName);
- json.push_back(newOne);
- return json;
-}
+LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const JSON_PARAM &param)
+{
+ JSONNode newOne(param.node);
+ newOne.set_name(param.szName);
+ json.push_back(newOne);
+ return json;
+}