diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-06-01 11:37:10 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-06-01 11:37:10 +0200 |
commit | 63a9b33d2a7cfa02c51d3fd26feb59d8a939cb91 (patch) | |
tree | 09a189184be508992fb7a5bd9802b24dd36f1609 /cpp/test/Ice/interceptor/MyObjectI.cpp | |
parent | Simplify handling of single linux arch in Make.rules.Linux (diff) | |
download | ice-63a9b33d2a7cfa02c51d3fd26feb59d8a939cb91.tar.bz2 ice-63a9b33d2a7cfa02c51d3fd26feb59d8a939cb91.tar.xz ice-63a9b33d2a7cfa02c51d3fd26feb59d8a939cb91.zip |
Fixed ICE-7954 - bug in Object::ice_dispatch
Diffstat (limited to 'cpp/test/Ice/interceptor/MyObjectI.cpp')
-rw-r--r-- | cpp/test/Ice/interceptor/MyObjectI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/interceptor/MyObjectI.cpp b/cpp/test/Ice/interceptor/MyObjectI.cpp index a452568dbcb..02e009fd51e 100644 --- a/cpp/test/Ice/interceptor/MyObjectI.cpp +++ b/cpp/test/Ice/interceptor/MyObjectI.cpp @@ -258,7 +258,7 @@ MyObjectI::amdAddWithRetry_async(const Test::AMD_MyObject_amdAddWithRetryPtr& cb if(p == current.ctx.end() || p->second != "no") { - throw Test::RetryException(__FILE__, __LINE__); + cb->ice_exception(Test::RetryException(__FILE__, __LINE__)); } } |