diff options
author | Steven Shaw <steshaw@apache.org> | 2006-11-30 14:18:03 +0000 |
---|---|---|
committer | Steven Shaw <steshaw@apache.org> | 2006-11-30 14:18:03 +0000 |
commit | 4d7f04636758d39a3ef7250cbcc745edb3de7685 (patch) | |
tree | 7244bc2128d6027cf60c58c27b87cade8c2477eb /cpp/src | |
parent | 97eabaa7419f61015067d6b3fc29c3317f795b9e (diff) | |
download | qpid-python-4d7f04636758d39a3ef7250cbcc745edb3de7685.tar.gz |
Changes for building on RHEL3. Also bundle debug and release libs
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@480934 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/ExceptionHolder.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/qpid/ExceptionHolder.h b/cpp/src/qpid/ExceptionHolder.h index c2deca803e..2ce3f5ab9e 100644 --- a/cpp/src/qpid/ExceptionHolder.h +++ b/cpp/src/qpid/ExceptionHolder.h @@ -47,6 +47,8 @@ class ExceptionHolder : public Exception, public boost::shared_ptr<Exception> ExceptionHolder(const Exception& e) throw() : shared_ptr(e.clone()) {} ExceptionHolder(const std::exception& e); + ~ExceptionHolder() throw() {} + const char* what() const throw() { return (*this)->what(); } std::string toString() const throw() { return (*this)->toString(); } virtual Exception* clone() const throw() { return (*this)->clone(); } |