diff options
author | Michi Henning <michi@zeroc.com> | 2003-12-16 01:12:38 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-12-16 01:12:38 +0000 |
commit | d20b8f5a3db4b0f0f12577318cb54b67616ded56 (patch) | |
tree | d9feafb7d1a3890bd1bd5cc0f0564a9f6c76de04 /cpp/src/Transform/Exception.cpp | |
parent | more tracing (diff) | |
download | ice-d20b8f5a3db4b0f0f12577318cb54b67616ded56.tar.bz2 ice-d20b8f5a3db4b0f0f12577318cb54b67616ded56.tar.xz ice-d20b8f5a3db4b0f0f12577318cb54b67616ded56.zip |
Changed Ice::Exception::ice_name() to return const string&.
Diffstat (limited to 'cpp/src/Transform/Exception.cpp')
-rw-r--r-- | cpp/src/Transform/Exception.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/Transform/Exception.cpp b/cpp/src/Transform/Exception.cpp index 4240f450fb7..e6b030bf178 100644 --- a/cpp/src/Transform/Exception.cpp +++ b/cpp/src/Transform/Exception.cpp @@ -24,10 +24,12 @@ Transform::TransformException::TransformException(const char* file, int line, co { } -string +string Transform::TransformException::_name = "Transform:TransformException"; + +const string& Transform::TransformException::ice_name() const { - return "Transform::TransformException"; + return _name; } void |