mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-22 23:07:29 +02:00
Made EscapedString pure static
This commit is contained in:
@ -14,20 +14,6 @@ namespace ArduinoJson
|
||||
class EscapedString
|
||||
{
|
||||
public:
|
||||
|
||||
EscapedString(const char* s)
|
||||
: rawString(s)
|
||||
{
|
||||
}
|
||||
|
||||
size_t printTo(Print& p) const
|
||||
{
|
||||
return printTo(rawString, p);
|
||||
}
|
||||
|
||||
private:
|
||||
const char* rawString;
|
||||
|
||||
static size_t printTo(const char*, Print&);
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user