diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-12-15 17:20:54 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-12-15 17:20:54 +0000 |
commit | fd4482d410907f9e23e575dcba4965410eb79b9f (patch) | |
tree | 9680ea4dab9293781932ef02d85d2c6a4634be87 /cppe/src | |
parent | Some cleanup to make code prettier (diff) | |
download | ice-fd4482d410907f9e23e575dcba4965410eb79b9f.tar.bz2 ice-fd4482d410907f9e23e575dcba4965410eb79b9f.tar.xz ice-fd4482d410907f9e23e575dcba4965410eb79b9f.zip |
Fixed compile error
Diffstat (limited to 'cppe/src')
-rw-r--r-- | cppe/src/IceE/Outgoing.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cppe/src/IceE/Outgoing.cpp b/cppe/src/IceE/Outgoing.cpp index b8a0c0f5deb..7351c231ca6 100644 --- a/cppe/src/IceE/Outgoing.cpp +++ b/cppe/src/IceE/Outgoing.cpp @@ -500,9 +500,6 @@ IceInternal::Outgoing::finished(const LocalException& ex) _state = StateLocalException; _exception.reset(dynamic_cast<LocalException*>(ex.ice_clone())); #ifndef ICEE_PURE_BLOCKING_CLIENT - if(!_connection->blocking()) - { - notify(); - } + notify(); #endif } |