summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/timeout/Client.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2015-12-03 12:18:04 +0100
committerJose <jose@zeroc.com>2015-12-03 12:18:04 +0100
commitfb6e02eb536f24b9187021df64d7856c98b0e95a (patch)
tree7b123e9559dc473b517950d2d0627d329a4349b2 /cpp/test/Ice/timeout/Client.cpp
parentC++11 mapping: invocation timeout fixes (diff)
downloadice-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.cpp4
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;
}