summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2013-06-05 17:56:16 +0000
committerAndrew Stitcher <astitcher@apache.org>2013-06-05 17:56:16 +0000
commit69ab0b1a204d2e155f0ab9f5c06782a47b819d81 (patch)
tree522e600ba878e7049c5e26675d829192e59ee8f2 /cpp/src
parent3e2f0e9d82e03352ac592493a047d429eaa50ce9 (diff)
downloadqpid-python-69ab0b1a204d2e155f0ab9f5c06782a47b819d81.tar.gz
QPID-4854: Removed use of intrusive_ptr::reset to work with older boost versions
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1489986 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/sys/AsynchIOHandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/AsynchIOHandler.cpp b/cpp/src/qpid/sys/AsynchIOHandler.cpp
index 670f415e71..243e3d4603 100644
--- a/cpp/src/qpid/sys/AsynchIOHandler.cpp
+++ b/cpp/src/qpid/sys/AsynchIOHandler.cpp
@@ -102,7 +102,7 @@ void AsynchIOHandler::abort() {
void AsynchIOHandler::connectionEstablished() {
if (timeoutTimerTask) {
timeoutTimerTask->cancel();
- timeoutTimerTask.reset();
+ timeoutTimerTask = 0;
}
}