forked from bblanchon/ArduinoJson
Made EscapedString pure static
This commit is contained in:
@ -83,8 +83,7 @@ namespace JsonGeneratorTests
|
||||
void whenInputIs(const char* input)
|
||||
{
|
||||
StringBuilder sb(buffer, sizeof(buffer));
|
||||
EscapedString escapedString = input;
|
||||
returnValue = escapedString.printTo(sb);
|
||||
returnValue = EscapedString::printTo(input, sb);
|
||||
}
|
||||
|
||||
void outputMustBe(const char* expected)
|
||||
|
Reference in New Issue
Block a user