From 876075a808fcc61e2d859e217937fe64ff09aa0e Mon Sep 17 00:00:00 2001 From: dartraiden Date: Wed, 7 Nov 2018 14:54:36 +0300 Subject: some files contains LF and CRLF simultaneously --- libs/libjson/src/stdafx.cxx | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'libs') 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; +} -- cgit v1.2.3