aboutsummaryrefslogtreecommitdiff
path: root/src/support/error/error_multiplexer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/support/error/error_multiplexer.cc')
-rw-r--r--src/support/error/error_multiplexer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/support/error/error_multiplexer.cc b/src/support/error/error_multiplexer.cc
index bbf0e71..78f0a4b 100644
--- a/src/support/error/error_multiplexer.cc
+++ b/src/support/error/error_multiplexer.cc
@@ -14,7 +14,7 @@ namespace {
using InputXSLT::XercesStringGuard;
using InputXSLT::ErrorMultiplexer;
-inline std::string getMessage(const xercesc::SAXParseException& exception) {
+std::string getMessage(const xercesc::SAXParseException& exception) {
return (
std::string(*XercesStringGuard<char>(exception.getMessage()))
+ ". (Occurred in entity '"
@@ -27,7 +27,7 @@ inline std::string getMessage(const xercesc::SAXParseException& exception) {
);
}
-inline ErrorMultiplexer::error_type toErrorType(
+ErrorMultiplexer::error_type toErrorType(
const xalan::ProblemListenerBase::eClassification classification) {
switch ( classification ) {
case xalan::ProblemListenerBase::eClassification::eMessage ||