We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3b68c9 commit 0bc1c2aCopy full SHA for 0bc1c2a
libs/network/example/twitter/rapidjson/document.h
@@ -701,7 +701,7 @@ class GenericDocument : public GenericValue<Encoding, Allocator> {
701
GenericDocument& ParseStream(Stream& stream) {
702
ValueType::SetNull(); // Remove existing root if exist
703
GenericReader<Encoding> reader;
704
- if (reader.Parse<parseFlags>(stream, *this)) {
+ if (reader.template Parse<parseFlags>(stream, *this)) {
705
RAPIDJSON_ASSERT(stack_.GetSize() == sizeof(ValueType)); // Got one and only one root object
706
this->RawAssign(*stack_.template Pop<ValueType>(1));
707
parseError_ = 0;
0 commit comments