diff options
author | Jose <jose@zeroc.com> | 2015-12-03 12:18:04 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-12-03 12:18:04 +0100 |
commit | fb6e02eb536f24b9187021df64d7856c98b0e95a (patch) | |
tree | 7b123e9559dc473b517950d2d0627d329a4349b2 /cpp/test/Ice/udp/Client.cpp | |
parent | C++11 mapping: invocation timeout fixes (diff) | |
download | ice-fb6e02eb536f24b9187021df64d7856c98b0e95a.tar.bz2 ice-fb6e02eb536f24b9187021df64d7856c98b0e95a.tar.xz ice-fb6e02eb536f24b9187021df64d7856c98b0e95a.zip |
C++11 mapping: update & timeout tests
Diffstat (limited to 'cpp/test/Ice/udp/Client.cpp')
-rw-r--r-- | cpp/test/Ice/udp/Client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/udp/Client.cpp b/cpp/test/Ice/udp/Client.cpp index ac60fdf9093..a9e2a0071bf 100644 --- a/cpp/test/Ice/udp/Client.cpp +++ b/cpp/test/Ice/udp/Client.cpp @@ -27,7 +27,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { ostringstream os; os << "control:tcp -p " << (12010 + i); - TestIntfPrx::uncheckedCast(communicator->stringToProxy(os.str()))->shutdown(); + ICE_UNCHECKED_CAST(TestIntfPrx, communicator->stringToProxy(os.str()))->shutdown(); } return EXIT_SUCCESS; } |