From 45b526ce09daee869ec1313808583f7e05bff7bb Mon Sep 17 00:00:00 2001 From: Andrew Stitcher Date: Mon, 18 Jun 2007 12:11:32 +0000 Subject: Intermediate checkin with preliminary work on epoll based net IO git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@548337 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/QpidError.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src/qpid/QpidError.cpp') diff --git a/cpp/src/qpid/QpidError.cpp b/cpp/src/qpid/QpidError.cpp index 365c84ea1d..fcd5af47a5 100644 --- a/cpp/src/qpid/QpidError.cpp +++ b/cpp/src/qpid/QpidError.cpp @@ -30,7 +30,7 @@ QpidError::QpidError() : code(0) {} QpidError::~QpidError() throw() {} -Exception* QpidError::clone() const throw() { return new QpidError(*this); } +Exception::auto_ptr QpidError::clone() const throw() { return Exception::auto_ptr(new QpidError(*this)); } void QpidError::throwSelf() const { throw *this; } -- cgit v1.2.1