mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 00:38:27 +01:00
Switched to Google coding style to match cpplint expectations
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
namespace ArduinoJson {
|
||||
namespace Internals {
|
||||
class JsonWriter {
|
||||
public:
|
||||
public:
|
||||
explicit JsonWriter(Print *sink) : _sink(sink), _length(0) {}
|
||||
|
||||
size_t bytesWritten() { return _length; }
|
||||
@@ -31,7 +31,7 @@ public:
|
||||
|
||||
void writeEmptyObject() { _length += _sink->print("{}"); }
|
||||
|
||||
protected:
|
||||
protected:
|
||||
Print *_sink;
|
||||
size_t _length;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user