diff options
author | Michi Henning <michi@zeroc.com> | 2006-08-29 03:05:35 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2006-08-29 03:05:35 +0000 |
commit | 867d62b25a8be3774677296dcd438da2ec6ea26c (patch) | |
tree | a337af523816a16f48851d084ce59d202e57eb68 /cpp/src/IceUtil/Exception.cpp | |
parent | Bugs 1339, 1325, 1335. (diff) | |
download | ice-867d62b25a8be3774677296dcd438da2ec6ea26c.tar.bz2 ice-867d62b25a8be3774677296dcd438da2ec6ea26c.tar.xz ice-867d62b25a8be3774677296dcd438da2ec6ea26c.zip |
Bug 1339.
Bug 1335 and 1325 for Ice-E.
Diffstat (limited to 'cpp/src/IceUtil/Exception.cpp')
-rw-r--r-- | cpp/src/IceUtil/Exception.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceUtil/Exception.cpp b/cpp/src/IceUtil/Exception.cpp index 94ed2f890d7..f61cbfda023 100644 --- a/cpp/src/IceUtil/Exception.cpp +++ b/cpp/src/IceUtil/Exception.cpp @@ -36,7 +36,7 @@ IceUtil::Exception::~Exception() const char* IceUtil::Exception::_name = "IceUtil::Exception"; -const string +string IceUtil::Exception::ice_name() const { return _name; @@ -94,7 +94,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; @@ -125,7 +125,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; |