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/timeout/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/timeout/Client.cpp')
-rw-r--r-- | cpp/test/Ice/timeout/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/timeout/Client.cpp b/cpp/test/Ice/timeout/Client.cpp index 16821374682..beebbe4e0c2 100644 --- a/cpp/test/Ice/timeout/Client.cpp +++ b/cpp/test/Ice/timeout/Client.cpp @@ -19,8 +19,8 @@ using namespace Test; int run(int, char**, const Ice::CommunicatorPtr& communicator) { - TimeoutPrx allTests(const Ice::CommunicatorPtr&); - TimeoutPrx timeout = allTests(communicator); + TimeoutPrxPtr allTests(const Ice::CommunicatorPtr&); + TimeoutPrxPtr timeout = allTests(communicator); timeout->shutdown(); return EXIT_SUCCESS; } |