Made EscapedString pure static

This commit is contained in:
Benoit Blanchon
2014-08-01 15:32:05 +02:00
parent 158f4600fb
commit 09294cb5e6
4 changed files with 3 additions and 18 deletions

View File

@ -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)