Skip to content

Commit 0bc1c2a

Browse files
committed
Pendantic fix for clang.
1 parent d3b68c9 commit 0bc1c2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/network/example/twitter/rapidjson/document.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ class GenericDocument : public GenericValue<Encoding, Allocator> {
701701
GenericDocument& ParseStream(Stream& stream) {
702702
ValueType::SetNull(); // Remove existing root if exist
703703
GenericReader<Encoding> reader;
704-
if (reader.Parse<parseFlags>(stream, *this)) {
704+
if (reader.template Parse<parseFlags>(stream, *this)) {
705705
RAPIDJSON_ASSERT(stack_.GetSize() == sizeof(ValueType)); // Got one and only one root object
706706
this->RawAssign(*stack_.template Pop<ValueType>(1));
707707
parseError_ = 0;

0 commit comments

Comments
 (0)