forked from bblanchon/ArduinoJson
Added a test class for StringBuilder
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
/*
|
||||
* Arduino JSON library
|
||||
* Benoit Blanchon 2014 - MIT License
|
||||
*/
|
||||
|
||||
#include "StringBuilder.h"
|
||||
|
||||
|
||||
@ -32,8 +37,8 @@ void StringBuilder::appendEscaped(const char* s)
|
||||
break;
|
||||
|
||||
|
||||
default:
|
||||
buffer[length++] = *s;
|
||||
default:
|
||||
buffer[length++] = *s;
|
||||
break;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user