Removed implementation of JsonBufferAllocated::delete.

This commit is contained in:
Benoit Blanchon
2017-06-18 21:24:25 +02:00
committed by Benoit Blanchon
parent 476e5aaa86
commit 5da41edf6a
4 changed files with 5 additions and 4 deletions

View File

@@ -45,7 +45,8 @@ class JsonObject : public Internals::JsonPrintable<JsonObject>,
// Create an empty JsonArray attached to the specified JsonBuffer.
// You should not use this constructor directly.
// Instead, use JsonBuffer::createObject() or JsonBuffer.parseObject().
explicit JsonObject(JsonBuffer* buffer) : Internals::List<JsonPair>(buffer) {}
explicit JsonObject(JsonBuffer* buffer) throw()
: Internals::List<JsonPair>(buffer) {}
// Gets or sets the value associated with the specified key.
//