diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2013-06-05 17:56:16 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2013-06-05 17:56:16 +0000 |
| commit | a7ed6021b032906851e3fdf202124ef1b4a583df (patch) | |
| tree | 4cfafd27448f6a093aa37037b338f71cafc23273 /qpid | |
| parent | 5df84634e0bd77dcbdd193e9444281a4a12fa859 (diff) | |
| download | qpid-python-a7ed6021b032906851e3fdf202124ef1b4a583df.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@1489986 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid')
| -rw-r--r-- | qpid/cpp/src/qpid/sys/AsynchIOHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/sys/AsynchIOHandler.cpp b/qpid/cpp/src/qpid/sys/AsynchIOHandler.cpp index 670f415e71..243e3d4603 100644 --- a/qpid/cpp/src/qpid/sys/AsynchIOHandler.cpp +++ b/qpid/cpp/src/qpid/sys/AsynchIOHandler.cpp @@ -102,7 +102,7 @@ void AsynchIOHandler::abort() { void AsynchIOHandler::connectionEstablished() { if (timeoutTimerTask) { timeoutTimerTask->cancel(); - timeoutTimerTask.reset(); + timeoutTimerTask = 0; } } |
