mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-19 05:22:24 +02:00
Replaced non-const references by pointer to follow Google style guide
This commit is contained in:
@ -33,10 +33,7 @@ public:
|
||||
|
||||
size_t prettyPrintTo(char* buffer, size_t bufferSize) const;
|
||||
size_t prettyPrintTo(ArduinoJson::Generator::IndentedPrint& print) const;
|
||||
size_t prettyPrintTo(Print& print) const
|
||||
{
|
||||
return prettyPrintTo(ArduinoJson::Generator::IndentedPrint(print));
|
||||
}
|
||||
size_t prettyPrintTo(Print& print) const;
|
||||
|
||||
protected:
|
||||
|
||||
|
Reference in New Issue
Block a user