Switched to Google coding style to match cpplint expectations

This commit is contained in:
Benoit Blanchon
2014-10-23 23:13:13 +02:00
parent 5c8283b3e4
commit b43da1e421
47 changed files with 262 additions and 308 deletions

View File

@@ -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;
};
}