add Key() to IterativeParsingReaderHandler in readertest.cpp`

This commit is contained in:
Kosta 2014-09-04 15:24:52 +02:00
parent 17b1a14d62
commit 23b3d24355

View File

@ -848,6 +848,8 @@ struct IterativeParsingReaderHandler {
bool StartObject() { RAPIDJSON_ASSERT(LogCount < LogCapacity); Logs[LogCount++] = LOG_STARTOBJECT; return true; }
bool Key (const Ch* str, SizeType len, bool copy) { return String(str, len, copy); }
bool EndObject(SizeType c) {
RAPIDJSON_ASSERT(LogCount < LogCapacity);
Logs[LogCount++] = LOG_ENDOBJECT;