summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/OutgoingAsync.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/OutgoingAsync.cpp')
-rw-r--r--cpp/src/Ice/OutgoingAsync.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/OutgoingAsync.cpp b/cpp/src/Ice/OutgoingAsync.cpp
index e019e9e4949..dad736c7e14 100644
--- a/cpp/src/Ice/OutgoingAsync.cpp
+++ b/cpp/src/Ice/OutgoingAsync.cpp
@@ -68,7 +68,7 @@ public:
private:
const Ice::AsyncResultPtr _result;
- const auto_ptr<Ice::Exception> _exception;
+ const IceUtil::UniquePtr<Ice::Exception> _exception;
};
class AsynchronousSent : public DispatchWorkItem
@@ -634,7 +634,7 @@ IceInternal::OutgoingAsync::__finished(BasicStream& is)
string operation;
_is.read(operation, false);
- auto_ptr<RequestFailedException> ex;
+ IceUtil::UniquePtr<RequestFailedException> ex;
switch(replyStatus)
{
case replyObjectNotExist:
@@ -675,7 +675,7 @@ IceInternal::OutgoingAsync::__finished(BasicStream& is)
string unknown;
_is.read(unknown, false);
- auto_ptr<UnknownException> ex;
+ IceUtil::UniquePtr<UnknownException> ex;
switch(replyStatus)
{
case replyUnknownException: