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/Node.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/Node.cpp')
-rw-r--r-- | cpp/src/Transform/Node.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/Transform/Node.cpp b/cpp/src/Transform/Node.cpp index 9b37554f172..754d18b29aa 100644 --- a/cpp/src/Transform/Node.cpp +++ b/cpp/src/Transform/Node.cpp @@ -75,10 +75,12 @@ Transform::EvaluateException::EvaluateException(const char* file, int line, cons { } -string +string Transform::EvaluateException::_name = "Transform::EvaluateException"; + +const string& Transform::EvaluateException::ice_name() const { - return "Transform::EvaluateException"; + return _name; } void |