Test initial value of DynamicJsonBuffer.blockCount()

This commit is contained in:
Benoit Blanchon
2014-12-13 20:22:52 +01:00
parent 3cd6f66067
commit 19cce08b2b
2 changed files with 6 additions and 0 deletions

View File

@ -19,6 +19,8 @@ class DynamicJsonBuffer : public JsonBuffer {
size_t size() const { return _size; }
size_t blockCount() const { return 1; }
static const size_t BLOCK_CAPACITY = 32;
protected: