Reduced sze by 26 bytes by inlining getOrCreateNodeAt()

This commit is contained in:
Benoit Blanchon
2014-11-08 21:29:17 +01:00
parent 05db56760f
commit 36ee4876c6
2 changed files with 10 additions and 18 deletions

View File

@ -99,10 +99,6 @@ class JsonObject : public Internals::JsonPrintable<JsonObject>,
// Returns the list node that matches the specified key.
node_type *getNodeAt(key_type key) const;
// Returns the list node that matches the specified key, creating it if
// needed.
node_type *getOrCreateNodeAt(key_type key);
// The instance returned by JsonObject::invalid()
static JsonObject _invalid;
};