summaryrefslogtreecommitdiff
path: root/src/plugins/xml/XmlParser.cpp
diff options
context:
space:
mode:
authorBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2014-12-05 14:16:27 +0100
committerBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2014-12-05 14:16:27 +0100
commit30765a8bbf30aafad89a632afc39966c5b4029b8 (patch)
treeb9540230f7ac8ac68d66caf7d727e7413a56f631 /src/plugins/xml/XmlParser.cpp
parentfddd8a6fc3c9a7971111a345a83283a0a1662f9f (diff)
parentbf59bc2edbb1f3f4d12bfbd8ed2663fbbb1900c0 (diff)
Merge branch 'master' of somweyr.de:ousia
Diffstat (limited to 'src/plugins/xml/XmlParser.cpp')
-rw-r--r--src/plugins/xml/XmlParser.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/xml/XmlParser.cpp b/src/plugins/xml/XmlParser.cpp
index afc7f14..ce2857e 100644
--- a/src/plugins/xml/XmlParser.cpp
+++ b/src/plugins/xml/XmlParser.cpp
@@ -208,8 +208,7 @@ Rooted<Node> XmlParser::parse(std::istream &is, ParserContext &ctx)
const int column = XML_GetCurrentColumnNumber(&p);
const XML_Error code = XML_GetErrorCode(&p);
const std::string msg = std::string{XML_ErrorString(code)};
- throw ParserException{"XML Syntax Error: " + msg, line, column,
- false};
+ throw ParserException{"XML Syntax Error: " + msg, line, column};
}
// Abort once there are no more bytes in the stream