diff --git a/include/rapidjson/document.h b/include/rapidjson/document.h index e206d84..1eb506c 100644 --- a/include/rapidjson/document.h +++ b/include/rapidjson/document.h @@ -711,6 +711,9 @@ public: template bool operator!=(const GenericValue& rhs) const { return !(*this == rhs); } + //! Not-equal-to operator with const C-string pointer + bool operator!=(const Ch* rhs) const { return !(*this == rhs); } + //! Not-equal-to operator with arbitrary types /*! \return !(*this == rhs) */