mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-11-01 08:48:30 +01:00 
			
		
		
		
	Changed return type of convertToJson() and Converter::toJson() to void
This commit is contained in:
		| @@ -337,8 +337,8 @@ class JsonDocument : public Visitable { | ||||
|   JsonDocument& operator=(const JsonDocument&); | ||||
| }; | ||||
|  | ||||
| inline bool convertToJson(const JsonDocument& src, VariantRef dst) { | ||||
|   return dst.set(src.as<VariantConstRef>()); | ||||
| inline void convertToJson(const JsonDocument& src, VariantRef dst) { | ||||
|   dst.set(src.as<VariantConstRef>()); | ||||
| } | ||||
|  | ||||
| }  // namespace ARDUINOJSON_NAMESPACE | ||||
|   | ||||
		Reference in New Issue
	
	Block a user