mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-16 20:12:16 +02:00
Switched to Google coding style to match cpplint expectations
This commit is contained in:
@ -8,8 +8,7 @@
|
||||
using namespace ArduinoJson::Internals;
|
||||
|
||||
size_t StringBuilder::write(uint8_t c) {
|
||||
if (length >= capacity)
|
||||
return 0;
|
||||
if (length >= capacity) return 0;
|
||||
|
||||
buffer[length++] = c;
|
||||
buffer[length] = 0;
|
||||
|
Reference in New Issue
Block a user