mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 08:48:30 +01:00
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