Revert "Adds GenericDocument::ParseStream() overload to make SourceEncoding optional"

This reverts commit 84f64ba58a73a0898ad78ea239323942b63c6d51.
This commit is contained in:
Milo Yip 2014-06-25 01:06:04 +08:00
parent 1eb62770d3
commit dfe201e3c1

View File

@ -788,11 +788,6 @@ public:
return *this;
}
template <unsigned parseFlags, typename InputStream>
GenericDocument& ParseStream(InputStream& is) {
return ParseStream<parseFlags, Encoding, InputStream>(is);
}
//! Parse JSON text from a mutable string.
/*! \tparam parseFlags Combination of ParseFlag.
\param str Mutable zero-terminated string to be parsed.