We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GenericDocument::ParseStream() does not pass custom memory allocator to GenericReader template in document.h:703. Proposed patch Index: document.h =================================================================== --- document.h +++ document.h @@ -700,7 +700,7 @@ template <unsigned parseFlags, typename SourceEncoding, typename InputStream> GenericDocument& ParseStream(InputStream& is) { ValueType::SetNull(); // Remove existing root if exist - GenericReader<SourceEncoding, Encoding> reader; + GenericReader<SourceEncoding, Encoding, Allocator> reader; if (reader.Parse<parseFlags>(is, *this)) { RAPIDJSON_ASSERT(stack_.GetSize() == sizeof(ValueType)); // Got one and only one root object this->RawAssign(*stack_.template Pop<ValueType>(1)); // Add this-> to prevent issue 13.
Original issue reported on code.google.com by mte...@googlemail.com on 12 Jun 2012 at 10:06
mte...@googlemail.com
The text was updated successfully, but these errors were encountered:
Original comment by milo...@gmail.com on 12 Nov 2012 at 3:59
milo...@gmail.com
Sorry, something went wrong.
This issue was closed by revision r76.
Original comment by milo...@gmail.com on 14 Nov 2012 at 2:50
This issue was closed by revision r77.
Original comment by milo...@gmail.com on 14 Nov 2012 at 2:53
This issue was closed by revision 790b7f127cce.
Original comment by milo...@gmail.com on 6 Jun 2014 at 6:04
No branches or pull requests
Original issue reported on code.google.com by
mte...@googlemail.com
on 12 Jun 2012 at 10:06The text was updated successfully, but these errors were encountered: