diff options
Diffstat (limited to 'cppe/src/IceE/ExceptionBase.cpp')
-rwxr-xr-x | cppe/src/IceE/ExceptionBase.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cppe/src/IceE/ExceptionBase.cpp b/cppe/src/IceE/ExceptionBase.cpp index 3b9c96f121a..327098fb317 100755 --- a/cppe/src/IceE/ExceptionBase.cpp +++ b/cppe/src/IceE/ExceptionBase.cpp @@ -37,7 +37,7 @@ IceUtil::Exception::~Exception() const char* IceUtil::Exception::_name = "IceUtil::Exception"; -const string +string IceUtil::Exception::ice_name() const { return _name; @@ -97,7 +97,7 @@ IceUtil::NullHandleException::NullHandleException(const char* file, int line) : const char* IceUtil::NullHandleException::_name = "IceUtil::NullHandleException"; -const string +string IceUtil::NullHandleException::ice_name() const { return _name; @@ -128,7 +128,7 @@ IceUtil::IllegalArgumentException::IllegalArgumentException(const char* file, in const char* IceUtil::IllegalArgumentException::_name = "IceUtil::IllegalArgumentException"; -const string +string IceUtil::IllegalArgumentException::ice_name() const { return _name; |