summaryrefslogtreecommitdiff
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
commit30075b86f197aadfbcd060460585ad7edbd1c70b (patch)
tree522e600ba878e7049c5e26675d829192e59ee8f2
parent0df10a4bf636e0dc89037afad2120b137554c9fa (diff)
downloadqpid-python-30075b86f197aadfbcd060460585ad7edbd1c70b.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
-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;
}
}