Use Print& instead of Print*

This commit is contained in:
Benoit Blanchon
2014-11-06 14:29:29 +01:00
parent 6e67bc442f
commit e7864c9566
6 changed files with 21 additions and 21 deletions

View File

@@ -17,7 +17,7 @@ class QuotedString {
// Writes a doubly-quote string to a Print implementation.
// It adds the double quotes (") at the beginning and the end of the string.
// It escapes the special characters as required by the JSON specifications.
static size_t printTo(const char *, Print *);
static size_t printTo(const char *, Print &);
// Reads a doubly-quoted string from a buffer.
// It removes the double quotes (").