mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-02 08:48:27 +01:00
Switched to Google coding style to match cpplint expectations
This commit is contained in:
@@ -8,7 +8,7 @@ class JsonArray;
|
||||
class JsonArrayIterator {
|
||||
friend class JsonArray;
|
||||
|
||||
public:
|
||||
public:
|
||||
explicit JsonArrayIterator(Internals::JsonNode *node) : _node(node) {}
|
||||
|
||||
void operator++() { _node = _node->next; }
|
||||
@@ -23,7 +23,7 @@ public:
|
||||
return _node != other._node;
|
||||
}
|
||||
|
||||
private:
|
||||
private:
|
||||
Internals::JsonNode *_node;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user