diff options
Diffstat (limited to 'cpp/src/IceXML/Parser.cpp')
-rw-r--r-- | cpp/src/IceXML/Parser.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/IceXML/Parser.cpp b/cpp/src/IceXML/Parser.cpp index f973ef03f27..7231005b74f 100644 --- a/cpp/src/IceXML/Parser.cpp +++ b/cpp/src/IceXML/Parser.cpp @@ -33,10 +33,12 @@ IceXML::ParserException::ParserException(const char* file, int line, const strin { } -string +string IceXML::ParserException::_name = "IceXML::ParserException"; + +const string& IceXML::ParserException::ice_name() const { - return "IceXML::ParserException"; + return _name; } void |