Change Document::ParseStream() to use stack allocator for Reader

This commit is contained in:
miloyip 2015-05-10 23:26:58 +08:00
parent 69414cb4d6
commit c54b7faf7c

View File

@ -1741,7 +1741,7 @@ public:
template <unsigned parseFlags, typename SourceEncoding, typename InputStream>
GenericDocument& ParseStream(InputStream& is) {
ValueType::SetNull(); // Remove existing root if exist
GenericReader<SourceEncoding, Encoding, Allocator> reader(&GetAllocator());
GenericReader<SourceEncoding, Encoding, StackAllocator> reader(&stack_.GetAllocator());
ClearStackOnExit scope(*this);
parseResult_ = reader.template Parse<parseFlags>(is, *this);
if (parseResult_) {