summaryrefslogtreecommitdiff
path: root/src/plugins/xml/XmlParser.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/xml/XmlParser.hpp')
-rw-r--r--src/plugins/xml/XmlParser.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/xml/XmlParser.hpp b/src/plugins/xml/XmlParser.hpp
index b19af1e..62f0128 100644
--- a/src/plugins/xml/XmlParser.hpp
+++ b/src/plugins/xml/XmlParser.hpp
@@ -52,11 +52,11 @@ public:
* Parses the given input stream as XML file and returns the parsed
* top-level node.
*
- * @param is is the input stream that will be parsed.
+ * @param reader is the CharReader from which the input should be read.
* @param ctx is a reference to the ParserContext instance that should be
* used.
*/
- Rooted<Node> parse(std::istream &is, ParserContext &ctx) override;
+ Rooted<Node> parse(CharReader &reader, ParserContext &ctx) override;
using Parser::parse;
};