diff options
author | Jose <jose@zeroc.com> | 2016-01-11 22:44:55 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-01-11 22:44:55 +0100 |
commit | d159c9f1574a2e768c947ad697a1e1e2205d194c (patch) | |
tree | 86e784ac7347c1dfa92304be2a9355a7a535dbcc /cpp/src/Ice/AsyncResult.cpp | |
parent | Add ICE_RESET_EXCEPTION macro to simplify C++ builds (diff) | |
download | ice-d159c9f1574a2e768c947ad697a1e1e2205d194c.tar.bz2 ice-d159c9f1574a2e768c947ad697a1e1e2205d194c.tar.xz ice-d159c9f1574a2e768c947ad697a1e1e2205d194c.zip |
C++11 Value::ice_clone improvements
Diffstat (limited to 'cpp/src/Ice/AsyncResult.cpp')
-rw-r--r-- | cpp/src/Ice/AsyncResult.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/AsyncResult.cpp b/cpp/src/Ice/AsyncResult.cpp index 7387366cbed..68b0af9745e 100644 --- a/cpp/src/Ice/AsyncResult.cpp +++ b/cpp/src/Ice/AsyncResult.cpp @@ -441,7 +441,7 @@ AsyncResult::cancel(const Ice::LocalException& ex) } handler = _cancellationHandler; } - handler->asyncRequestCanceled(ICE_DYNAMIC_CAST(OutgoingAsyncBase, shared_from_this()), ex); + handler->asyncRequestCanceled(ICE_DYNAMIC_CAST(OutgoingAsyncBase, ICE_SHARED_FROM_THIS), ex); } void |