Third-Party: Cherry-pick rapidjson buildfix

This commit is contained in:
Vicki Pfau 2024-05-25 01:33:26 -07:00
parent 2b394e1e26
commit 3a3ebb5dc7
1 changed files with 0 additions and 2 deletions

View File

@ -316,8 +316,6 @@ struct GenericStringRef {
GenericStringRef(const GenericStringRef& rhs) : s(rhs.s), length(rhs.length) {}
GenericStringRef& operator=(const GenericStringRef& rhs) { s = rhs.s; length = rhs.length; }
//! implicit conversion to plain CharType pointer
operator const Ch *() const { return s; }