Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorylavic <ylavic@users.noreply.github.com>2017-02-24 18:46:53 +0300
committerGitHub <noreply@github.com>2017-02-24 18:46:53 +0300
commitb977fd3c9d21c758d3cf74778458d573d3897b33 (patch)
tree41d11825a5b537ca552842d56e10b7d36325e62f /include/rapidjson/pointer.h
parent0eaa0d288c5ef4a580c765cdf606837ec649d132 (diff)
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);
Diffstat (limited to 'include/rapidjson/pointer.h')
-rw-r--r--include/rapidjson/pointer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rapidjson/pointer.h b/include/rapidjson/pointer.h
index bc7acfd0..0f377efe 100644
--- a/include/rapidjson/pointer.h
+++ b/include/rapidjson/pointer.h
@@ -240,7 +240,7 @@ public:
template <typename T>
RAPIDJSON_DISABLEIF_RETURN((internal::NotExpr<internal::IsSame<typename internal::RemoveConst<T>::Type, Ch> >), (GenericPointer))
Append(T* name, Allocator* allocator = 0) const {
- return Append(name, StrLen(name), allocator);
+ return Append(name, internal::StrLen(name), allocator);
}
#if RAPIDJSON_HAS_STDSTRING