summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorSteven Shaw <steshaw@apache.org>2006-11-30 14:18:03 +0000
committerSteven Shaw <steshaw@apache.org>2006-11-30 14:18:03 +0000
commit51b7a3fcf60bf7f6cc9e8ae3da2783b7145f3349 (patch)
treea3e0031fee7a768549c889baba56883c7c6c542a /qpid/cpp/src
parent134d9096c6b3db69c390df05032de6e1f34e0ebc (diff)
downloadqpid-python-51b7a3fcf60bf7f6cc9e8ae3da2783b7145f3349.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@480934 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/ExceptionHolder.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/cpp/src/qpid/ExceptionHolder.h b/qpid/cpp/src/qpid/ExceptionHolder.h
index c2deca803e..2ce3f5ab9e 100644
--- a/qpid/cpp/src/qpid/ExceptionHolder.h
+++ b/qpid/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(); }