summaryrefslogtreecommitdiff
path: root/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
commit4d7f04636758d39a3ef7250cbcc745edb3de7685 (patch)
tree7244bc2128d6027cf60c58c27b87cade8c2477eb /cpp/src
parent97eabaa7419f61015067d6b3fc29c3317f795b9e (diff)
downloadqpid-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.h2
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(); }