mirror of
https://github.com/Tencent/rapidjson.git
synced 2025-03-09 11:09:32 +01:00
add Key()
to IterativeParsingReaderHandler in
readertest.cpp`
This commit is contained in:
parent
17b1a14d62
commit
23b3d24355
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user