Skip to content

Commit a677b85

Browse files
authored
Merge pull request Tencent#866 from ylavic/patch-1
Missing "internal" namespace for StrLen
2 parents 0eaa0d2 + b977fd3 commit a677b85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/rapidjson/pointer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ class GenericPointer {
240240
template <typename T>
241241
RAPIDJSON_DISABLEIF_RETURN((internal::NotExpr<internal::IsSame<typename internal::RemoveConst<T>::Type, Ch> >), (GenericPointer))
242242
Append(T* name, Allocator* allocator = 0) const {
243-
return Append(name, StrLen(name), allocator);
243+
return Append(name, internal::StrLen(name), allocator);
244244
}
245245

246246
#if RAPIDJSON_HAS_STDSTRING

0 commit comments

Comments
 (0)