diff options
author | Marc Laukien <marc@zeroc.com> | 2004-02-20 19:51:16 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-02-20 19:51:16 +0000 |
commit | 20a7255e065531c6ef4e6c8ec593f007cb808b6f (patch) | |
tree | 4584d79b8188d4212cfa8a073d1baf65be1027e0 /cpp/src/Ice/OutgoingAsync.cpp | |
parent | fixes (diff) | |
download | ice-20a7255e065531c6ef4e6c8ec593f007cb808b6f.tar.bz2 ice-20a7255e065531c6ef4e6c8ec593f007cb808b6f.tar.xz ice-20a7255e065531c6ef4e6c8ec593f007cb808b6f.zip |
fix
Diffstat (limited to 'cpp/src/Ice/OutgoingAsync.cpp')
-rw-r--r-- | cpp/src/Ice/OutgoingAsync.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cpp/src/Ice/OutgoingAsync.cpp b/cpp/src/Ice/OutgoingAsync.cpp index a4ac2f3e7ae..ba255519aff 100644 --- a/cpp/src/Ice/OutgoingAsync.cpp +++ b/cpp/src/Ice/OutgoingAsync.cpp @@ -62,7 +62,6 @@ IceInternal::OutgoingAsync::__finished(BasicStream& is) { delete __is; __is = new BasicStream(_reference->instance.get()); - __is->swap(is); Byte b; @@ -128,8 +127,7 @@ IceInternal::OutgoingAsync::__finished(BasicStream& is) default: { - UnknownReplyStatusException ex(__FILE__, __LINE__); - throw ex; + throw UnknownReplyStatusException(__FILE__, __LINE__); } } } |