Skip to content

Commit b02620c

Browse files
deanberrisglynos
authored andcommitted
Make Clang happy with qualified call to RawAssign.
1 parent f78cab3 commit b02620c

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
@@ -703,7 +703,7 @@ class GenericDocument : public GenericValue<Encoding, Allocator> {
703703
GenericReader<Encoding> reader;
704704
if (reader.Parse<parseFlags>(stream, *this)) {
705705
RAPIDJSON_ASSERT(stack_.GetSize() == sizeof(ValueType)); // Got one and only one root object
706-
RawAssign(*stack_.template Pop<ValueType>(1));
706+
this->RawAssign(*stack_.template Pop<ValueType>(1));
707707
parseError_ = 0;
708708
errorOffset_ = 0;
709709
}

0 commit comments

Comments
 (0)