diff --git a/include/rapidjson/document.h b/include/rapidjson/document.h index 941fab4..d226d96 100644 --- a/include/rapidjson/document.h +++ b/include/rapidjson/document.h @@ -734,6 +734,11 @@ public: return *this; } + template + GenericDocument& ParseStream(InputStream& is) { + return ParseStream(is); + } + //! Parse JSON text from a mutable string. /*! \tparam parseFlags Combination of ParseFlag. \param str Mutable zero-terminated string to be parsed.