diff options
author | Bernard Normier <bernard@zeroc.com> | 2017-01-11 16:15:49 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2017-01-11 16:15:49 -0500 |
commit | f6a5299766fe3db2273afd78f145486b091513ed (patch) | |
tree | 87eead6b9fa33e43f7b863093fd410167d9cb23a /cpp/src/Ice/OutgoingAsync.cpp | |
parent | Fixed Glacier2/router IE browser test failure (diff) | |
download | ice-f6a5299766fe3db2273afd78f145486b091513ed.tar.bz2 ice-f6a5299766fe3db2273afd78f145486b091513ed.tar.xz ice-f6a5299766fe3db2273afd78f145486b091513ed.zip |
Moved UniquePtr to IceInternal
Removed ctor and assignment operator from UniquePtr
Diffstat (limited to 'cpp/src/Ice/OutgoingAsync.cpp')
-rw-r--r-- | cpp/src/Ice/OutgoingAsync.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/OutgoingAsync.cpp b/cpp/src/Ice/OutgoingAsync.cpp index 40c753fe656..4776672ff9a 100644 --- a/cpp/src/Ice/OutgoingAsync.cpp +++ b/cpp/src/Ice/OutgoingAsync.cpp @@ -994,7 +994,7 @@ OutgoingAsync::response() string operation; _is.read(operation, false); - IceUtil::UniquePtr<RequestFailedException> ex; + IceInternal::UniquePtr<RequestFailedException> ex; switch(replyStatus) { case replyObjectNotExist: @@ -1035,7 +1035,7 @@ OutgoingAsync::response() string unknown; _is.read(unknown, false); - IceUtil::UniquePtr<UnknownException> ex; + IceInternal::UniquePtr<UnknownException> ex; switch(replyStatus) { case replyUnknownException: |