diff options
author | Adrian Kummerlaender | 2014-11-09 12:00:22 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2014-11-09 12:00:22 +0100 |
commit | aa7afee1047a2de790a70dceda9079c8d5d01850 (patch) | |
tree | 4c7685ec6d6c171c24ab87ea853389170c686569 /src/support/error | |
parent | 71a637be86177e82a8fc0c654639c2fa83c13f5d (diff) | |
download | InputXSLT-aa7afee1047a2de790a70dceda9079c8d5d01850.tar InputXSLT-aa7afee1047a2de790a70dceda9079c8d5d01850.tar.gz InputXSLT-aa7afee1047a2de790a70dceda9079c8d5d01850.tar.bz2 InputXSLT-aa7afee1047a2de790a70dceda9079c8d5d01850.tar.lz InputXSLT-aa7afee1047a2de790a70dceda9079c8d5d01850.tar.xz InputXSLT-aa7afee1047a2de790a70dceda9079c8d5d01850.tar.zst InputXSLT-aa7afee1047a2de790a70dceda9079c8d5d01850.zip |
Removed unnecessary `inline` declarations
* e.g. member functions defined in the class definition are implicitly marked `inline`
Diffstat (limited to 'src/support/error')
-rw-r--r-- | src/support/error/error_multiplexer.cc | 4 |
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 || |