diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-04-25 11:39:33 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-04-25 11:39:33 +0000 |
commit | ba75aa39dbf29eba02941fad2b4ac5c7d4b30a13 (patch) | |
tree | dc589a20f0160269661ee5e6669f894bd3c9add6 /cpp/include/IceUtil/ThreadException.h | |
parent | changing IceUtil.Assert.Assert to IceUtil.Assert.FinalizerAssert (diff) | |
download | ice-ba75aa39dbf29eba02941fad2b4ac5c7d4b30a13.tar.bz2 ice-ba75aa39dbf29eba02941fad2b4ac5c7d4b30a13.tar.xz ice-ba75aa39dbf29eba02941fad2b4ac5c7d4b30a13.zip |
Fixed ice_name return type
Diffstat (limited to 'cpp/include/IceUtil/ThreadException.h')
-rw-r--r-- | cpp/include/IceUtil/ThreadException.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/include/IceUtil/ThreadException.h b/cpp/include/IceUtil/ThreadException.h index cc477754531..7faa1f54271 100644 --- a/cpp/include/IceUtil/ThreadException.h +++ b/cpp/include/IceUtil/ThreadException.h @@ -20,7 +20,7 @@ class ICE_UTIL_API ThreadSyscallException : public Exception public: ThreadSyscallException(const char*, int, int); - virtual const char* ice_name() const; + virtual const std::string ice_name() const; virtual void ice_print(std::ostream&) const; virtual Exception* ice_clone() const; virtual void ice_throw() const; @@ -37,7 +37,7 @@ class ICE_UTIL_API ThreadLockedException : public Exception public: ThreadLockedException(const char*, int); - virtual const char* ice_name() const; + virtual const std::string ice_name() const; virtual Exception* ice_clone() const; virtual void ice_throw() const; @@ -51,7 +51,7 @@ class ICE_UTIL_API ThreadStartedException : public Exception public: ThreadStartedException(const char*, int); - virtual const char* ice_name() const; + virtual const std::string ice_name() const; virtual Exception* ice_clone() const; virtual void ice_throw() const; @@ -65,7 +65,7 @@ class ICE_UTIL_API ThreadNotStartedException : public Exception public: ThreadNotStartedException(const char*, int); - virtual const char* ice_name() const; + virtual const std::string ice_name() const; virtual Exception* ice_clone() const; virtual void ice_throw() const; |