diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-06-08 02:22:42 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-06-08 02:22:42 +0000 |
commit | a60f1f651d60e48cc4f4a8e477c5b7813d24418d (patch) | |
tree | ab6fb426a1cad77c9ba865799e542fda62e8d4b1 /cpp/src/Ice/OutgoingAsync.cpp | |
parent | Removed substition ".cpp" -> ".cs". This is now done by slice2cs itself. (diff) | |
download | ice-a60f1f651d60e48cc4f4a8e477c5b7813d24418d.tar.bz2 ice-a60f1f651d60e48cc4f4a8e477c5b7813d24418d.tar.xz ice-a60f1f651d60e48cc4f4a8e477c5b7813d24418d.zip |
AIX port
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 755522bef87..ecef9ed15cb 100644 --- a/cpp/src/Ice/OutgoingAsync.cpp +++ b/cpp/src/Ice/OutgoingAsync.cpp @@ -90,7 +90,7 @@ IceInternal::OutgoingAsync::__finished(BasicStream& is) string operation; __is->read(operation); - auto_ptr<RequestFailedException> ex = auto_ptr<RequestFailedException>(0); + auto_ptr<RequestFailedException> ex; switch(static_cast<DispatchStatus>(status)) { case DispatchObjectNotExist: @@ -131,7 +131,7 @@ IceInternal::OutgoingAsync::__finished(BasicStream& is) string unknown; __is->read(unknown); - auto_ptr<UnknownException> ex = auto_ptr<UnknownException>(0); + auto_ptr<UnknownException> ex; switch(static_cast<DispatchStatus>(status)) { case DispatchUnknownException: |