mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 16:14:11 +01:00 
			
		
		
		
	Changed return type of convertToJson() and Converter::toJson() to void
This commit is contained in:
		| @@ -178,8 +178,8 @@ class ElementProxy : public VariantOperators<ElementProxy<TArray> >, | ||||
|     return _array.getOrAddElement(_index); | ||||
|   } | ||||
|  | ||||
|   friend bool convertToJson(const this_type& src, VariantRef dst) { | ||||
|     return dst.set(src.getUpstreamElement()); | ||||
|   friend void convertToJson(const this_type& src, VariantRef dst) { | ||||
|     dst.set(src.getUpstreamElement()); | ||||
|   } | ||||
|  | ||||
|   TArray _array; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user