summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/OutgoingAsync.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2004-06-08 02:22:42 +0000
committerBernard Normier <bernard@zeroc.com>2004-06-08 02:22:42 +0000
commita60f1f651d60e48cc4f4a8e477c5b7813d24418d (patch)
treeab6fb426a1cad77c9ba865799e542fda62e8d4b1 /cpp/src/Ice/OutgoingAsync.cpp
parentRemoved substition ".cpp" -> ".cs". This is now done by slice2cs itself. (diff)
downloadice-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.cpp4
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: