fix unittest warnings + remove trailing spaces
This commit is contained in:
		
							
								
								
									
										14
									
								
								third_party/jsoncpp/json/json-forwards.h
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										14
									
								
								third_party/jsoncpp/json/json-forwards.h
									
									
									
									
										vendored
									
									
								
							| @@ -7,28 +7,28 @@ | ||||
| // ////////////////////////////////////////////////////////////////////// | ||||
|  | ||||
| /* | ||||
| The JsonCpp library's source code, including accompanying documentation,  | ||||
| The JsonCpp library's source code, including accompanying documentation, | ||||
| tests and demonstration applications, are licensed under the following | ||||
| conditions... | ||||
|  | ||||
| The author (Baptiste Lepilleur) explicitly disclaims copyright in all  | ||||
| jurisdictions which recognize such a disclaimer. In such jurisdictions,  | ||||
| The author (Baptiste Lepilleur) explicitly disclaims copyright in all | ||||
| jurisdictions which recognize such a disclaimer. In such jurisdictions, | ||||
| this software is released into the Public Domain. | ||||
|  | ||||
| In jurisdictions which do not recognize Public Domain property (e.g. Germany as of | ||||
| 2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur, and is | ||||
| released under the terms of the MIT License (see below). | ||||
|  | ||||
| In jurisdictions which recognize Public Domain property, the user of this  | ||||
| software may choose to accept it either as 1) Public Domain, 2) under the  | ||||
| conditions of the MIT License (see below), or 3) under the terms of dual  | ||||
| In jurisdictions which recognize Public Domain property, the user of this | ||||
| software may choose to accept it either as 1) Public Domain, 2) under the | ||||
| conditions of the MIT License (see below), or 3) under the terms of dual | ||||
| Public Domain/MIT License conditions described here, as they choose. | ||||
|  | ||||
| The MIT License is about as close to Public Domain as a license can get, and is | ||||
| described in clear, concise terms at: | ||||
|  | ||||
|    http://en.wikipedia.org/wiki/MIT_License | ||||
|     | ||||
|  | ||||
| The full text of the MIT License follows: | ||||
|  | ||||
| ======================================================================== | ||||
|   | ||||
							
								
								
									
										22
									
								
								third_party/jsoncpp/json/json.h
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										22
									
								
								third_party/jsoncpp/json/json.h
									
									
									
									
										vendored
									
									
								
							| @@ -6,28 +6,28 @@ | ||||
| // ////////////////////////////////////////////////////////////////////// | ||||
|  | ||||
| /* | ||||
| The JsonCpp library's source code, including accompanying documentation,  | ||||
| The JsonCpp library's source code, including accompanying documentation, | ||||
| tests and demonstration applications, are licensed under the following | ||||
| conditions... | ||||
|  | ||||
| The author (Baptiste Lepilleur) explicitly disclaims copyright in all  | ||||
| jurisdictions which recognize such a disclaimer. In such jurisdictions,  | ||||
| The author (Baptiste Lepilleur) explicitly disclaims copyright in all | ||||
| jurisdictions which recognize such a disclaimer. In such jurisdictions, | ||||
| this software is released into the Public Domain. | ||||
|  | ||||
| In jurisdictions which do not recognize Public Domain property (e.g. Germany as of | ||||
| 2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur, and is | ||||
| released under the terms of the MIT License (see below). | ||||
|  | ||||
| In jurisdictions which recognize Public Domain property, the user of this  | ||||
| software may choose to accept it either as 1) Public Domain, 2) under the  | ||||
| conditions of the MIT License (see below), or 3) under the terms of dual  | ||||
| In jurisdictions which recognize Public Domain property, the user of this | ||||
| software may choose to accept it either as 1) Public Domain, 2) under the | ||||
| conditions of the MIT License (see below), or 3) under the terms of dual | ||||
| Public Domain/MIT License conditions described here, as they choose. | ||||
|  | ||||
| The MIT License is about as close to Public Domain as a license can get, and is | ||||
| described in clear, concise terms at: | ||||
|  | ||||
|    http://en.wikipedia.org/wiki/MIT_License | ||||
|     | ||||
|  | ||||
| The full text of the MIT License follows: | ||||
|  | ||||
| ======================================================================== | ||||
| @@ -390,7 +390,7 @@ public: | ||||
| #endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING) | ||||
|  | ||||
| //Conditional NORETURN attribute on the throw functions would: | ||||
| // a) suppress false positives from static code analysis  | ||||
| // a) suppress false positives from static code analysis | ||||
| // b) possibly improve optimization opportunities. | ||||
| #if !defined(JSONCPP_NORETURN) | ||||
| #  if defined(_MSC_VER) | ||||
| @@ -422,7 +422,7 @@ protected: | ||||
| /** Exceptions which the user cannot easily avoid. | ||||
|  * | ||||
|  * E.g. out-of-memory (when we use malloc), stack-overflow, malicious input | ||||
|  *  | ||||
|  * | ||||
|  * \remark derived from Json::Exception | ||||
|  */ | ||||
| class JSON_API RuntimeError : public Exception { | ||||
| @@ -433,7 +433,7 @@ public: | ||||
| /** Exceptions thrown by JSON_ASSERT/JSON_FAIL macros. | ||||
|  * | ||||
|  * These are precondition-violations (user bugs) and internal errors (our bugs). | ||||
|  *  | ||||
|  * | ||||
|  * \remark derived from Json::Exception | ||||
|  */ | ||||
| class JSON_API LogicError : public Exception { | ||||
| @@ -1502,7 +1502,7 @@ public: | ||||
|     - `"rejectDupKeys": false or true` | ||||
|       - If true, `parse()` returns false when a key is duplicated within an object. | ||||
|     - `"allowSpecialFloats": false or true` | ||||
|       - If true, special float values (NaNs and infinities) are allowed  | ||||
|       - If true, special float values (NaNs and infinities) are allowed | ||||
|         and their values are lossfree restorable. | ||||
|  | ||||
|     You can examine 'settings_` yourself | ||||
|   | ||||
							
								
								
									
										27
									
								
								third_party/jsoncpp/jsoncpp.cpp
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								third_party/jsoncpp/jsoncpp.cpp
									
									
									
									
										vendored
									
									
								
							| @@ -6,28 +6,28 @@ | ||||
| // ////////////////////////////////////////////////////////////////////// | ||||
|  | ||||
| /* | ||||
| The JsonCpp library's source code, including accompanying documentation,  | ||||
| The JsonCpp library's source code, including accompanying documentation, | ||||
| tests and demonstration applications, are licensed under the following | ||||
| conditions... | ||||
|  | ||||
| The author (Baptiste Lepilleur) explicitly disclaims copyright in all  | ||||
| jurisdictions which recognize such a disclaimer. In such jurisdictions,  | ||||
| The author (Baptiste Lepilleur) explicitly disclaims copyright in all | ||||
| jurisdictions which recognize such a disclaimer. In such jurisdictions, | ||||
| this software is released into the Public Domain. | ||||
|  | ||||
| In jurisdictions which do not recognize Public Domain property (e.g. Germany as of | ||||
| 2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur, and is | ||||
| released under the terms of the MIT License (see below). | ||||
|  | ||||
| In jurisdictions which recognize Public Domain property, the user of this  | ||||
| software may choose to accept it either as 1) Public Domain, 2) under the  | ||||
| conditions of the MIT License (see below), or 3) under the terms of dual  | ||||
| In jurisdictions which recognize Public Domain property, the user of this | ||||
| software may choose to accept it either as 1) Public Domain, 2) under the | ||||
| conditions of the MIT License (see below), or 3) under the terms of dual | ||||
| Public Domain/MIT License conditions described here, as they choose. | ||||
|  | ||||
| The MIT License is about as close to Public Domain as a license can get, and is | ||||
| described in clear, concise terms at: | ||||
|  | ||||
|    http://en.wikipedia.org/wiki/MIT_License | ||||
|     | ||||
|  | ||||
| The full text of the MIT License follows: | ||||
|  | ||||
| ======================================================================== | ||||
| @@ -209,7 +209,7 @@ static inline void fixNumericLocale(char* begin, char* end) { | ||||
| #include <stdio.h> | ||||
| #endif | ||||
| #if defined(_MSC_VER) | ||||
| #if !defined(WINCE) && defined(__STDC_SECURE_LIB__) && _MSC_VER >= 1500 // VC++ 9.0 and above  | ||||
| #if !defined(WINCE) && defined(__STDC_SECURE_LIB__) && _MSC_VER >= 1500 // VC++ 9.0 and above | ||||
| #define snprintf sprintf_s | ||||
| #elif _MSC_VER >= 1900 // VC++ 14.0 and above | ||||
| #define snprintf std::snprintf | ||||
| @@ -3780,7 +3780,7 @@ Value& Path::make(Value& root) const { | ||||
| #endif | ||||
|  | ||||
| #if defined(_MSC_VER) | ||||
| #if !defined(WINCE) && defined(__STDC_SECURE_LIB__) && _MSC_VER >= 1500 // VC++ 9.0 and above  | ||||
| #if !defined(WINCE) && defined(__STDC_SECURE_LIB__) && _MSC_VER >= 1500 // VC++ 9.0 and above | ||||
| #define snprintf sprintf_s | ||||
| #elif _MSC_VER >= 1900 // VC++ 14.0 and above | ||||
| #define snprintf std::snprintf | ||||
| @@ -3793,7 +3793,7 @@ Value& Path::make(Value& root) const { | ||||
| #define snprintf std::snprintf | ||||
| #endif | ||||
|  | ||||
| #if defined(__BORLANDC__)   | ||||
| #if defined(__BORLANDC__) | ||||
| #include <float.h> | ||||
| #define isfinite _finite | ||||
| #define snprintf _snprintf | ||||
| @@ -4856,7 +4856,7 @@ StreamWriter* StreamWriterBuilder::newStreamWriter() const | ||||
|   std::string cs_str = settings_["commentStyle"].asString(); | ||||
|   bool eyc = settings_["enableYAMLCompatibility"].asBool(); | ||||
|   bool dnp = settings_["dropNullPlaceholders"].asBool(); | ||||
|   bool usf = settings_["useSpecialFloats"].asBool();  | ||||
|   bool usf = settings_["useSpecialFloats"].asBool(); | ||||
|   unsigned int pre = settings_["precision"].asUInt(); | ||||
|   CommentStyle::Enum cs = CommentStyle::All; | ||||
|   if (cs_str == "All") { | ||||
| @@ -4945,8 +4945,3 @@ std::ostream& operator<<(std::ostream& sout, Value const& root) { | ||||
| // ////////////////////////////////////////////////////////////////////// | ||||
| // End of content of file: src/lib_json/json_writer.cpp | ||||
| // ////////////////////////////////////////////////////////////////////// | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user