mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-21 06:22:23 +02:00
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