mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	Fixed error 'dummy' may be used uninitialized on GCC 11
				
					
				
			This commit is contained in:
		| @@ -1,6 +1,11 @@ | ||||
| ArduinoJson: change log | ||||
| ======================= | ||||
|  | ||||
| HEAD | ||||
| ---- | ||||
|  | ||||
| * Fixed error `'dummy' may be used uninitialized` on GCC 11 | ||||
|  | ||||
| v6.18.3 (2021-07-27) | ||||
| ------- | ||||
|  | ||||
|   | ||||
| @@ -27,7 +27,7 @@ struct Converter { | ||||
|   } | ||||
|  | ||||
|   static bool checkJson(VariantConstRef src) { | ||||
|     T dummy; | ||||
|     T dummy = T(); | ||||
|     // clang-format off | ||||
|     return canConvertFromJson(src, dummy);  // Error here? See https://arduinojson.org/v6/unsupported-is/ | ||||
|     // clang-format on | ||||
|   | ||||
		Reference in New Issue
	
	Block a user