mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 16:14:11 +01:00 
			
		
		
		
	Set clang-format standard to C++11 (#1820)
This commit is contained in:
		| @@ -91,13 +91,13 @@ struct EmptyStruct {}; | ||||
|  | ||||
| TEST_CASE("IsString<T>") { | ||||
|   CHECK(IsString<std::string>::value == true); | ||||
|   CHECK(IsString<std::basic_string<wchar_t> >::value == false); | ||||
|   CHECK(IsString<std::basic_string<wchar_t>>::value == false); | ||||
|   CHECK(IsString<custom_string>::value == true); | ||||
|   CHECK(IsString<const __FlashStringHelper*>::value == true); | ||||
|   CHECK(IsString<const char*>::value == true); | ||||
|   CHECK(IsString<const char[8]>::value == true); | ||||
|   CHECK(IsString< ::String>::value == true); | ||||
|   CHECK(IsString< ::StringSumHelper>::value == true); | ||||
|   CHECK(IsString<::String>::value == true); | ||||
|   CHECK(IsString<::StringSumHelper>::value == true); | ||||
|   CHECK(IsString<const EmptyStruct*>::value == false); | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -65,7 +65,7 @@ TEST_CASE("Writer<std::string>") { | ||||
|  | ||||
| TEST_CASE("Writer<String>") { | ||||
|   ::String output; | ||||
|   Writer< ::String> writer(output); | ||||
|   Writer<::String> writer(output); | ||||
|  | ||||
|   SECTION("write(char)") { | ||||
|     SECTION("writes to temporary buffer") { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user