Made JsonBuffer non-copyable (PR #524 by @luisrayas3)

This commit is contained in:
Benoit Blanchon
2017-06-17 14:17:01 +02:00
parent e9d88dda8e
commit 508f936317
7 changed files with 39 additions and 15 deletions

View File

@@ -38,6 +38,7 @@ class JsonBuffer;
// It can also be deserialized from a JSON string via JsonBuffer::parseObject().
class JsonObject : public Internals::JsonPrintable<JsonObject>,
public Internals::ReferenceType,
public Internals::NonCopyable,
public Internals::List<JsonPair>,
public Internals::JsonBufferAllocated {
public: