Skip to content

Commit b977fd3

Browse files
authored
Missing "internal" namespace for StrLen
include/rapidjson/pointer.h:243:40: error: 'StrLen' was not declared in this scope return Append(name, StrLen(name), allocator);
1 parent 0eaa0d2 commit b977fd3

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)