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

This commit is contained in:
miloyip 2015-05-10 23:26:58 +08:00 committed by Milo Yip
parent 0691502573
commit ffbe386147
1 changed files with 1 additions and 1 deletions

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_) {