summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2017-01-20 14:38:35 -0500
committerJoe George <joe@zeroc.com>2017-01-20 14:39:40 -0500
commitd790f27f1ebe8d2ab1891b423a1b332faec82efc (patch)
tree8f991b451327bc2244bfcaf62184d561b0b915cd /cpp
parentRemove JavaScript local interfaces code (diff)
downloadice-d790f27f1ebe8d2ab1891b423a1b332faec82efc.tar.bz2
ice-d790f27f1ebe8d2ab1891b423a1b332faec82efc.tar.xz
ice-d790f27f1ebe8d2ab1891b423a1b332faec82efc.zip
Additional C++11 fix
Diffstat (limited to 'cpp')
-rw-r--r--cpp/test/Ice/timeout/AllTests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/timeout/AllTests.cpp b/cpp/test/Ice/timeout/AllTests.cpp
index 0c708db1155..6681a8f56df 100644
--- a/cpp/test/Ice/timeout/AllTests.cpp
+++ b/cpp/test/Ice/timeout/AllTests.cpp
@@ -459,7 +459,7 @@ allTests(const Ice::CommunicatorPtr& communicator)
{
timeout->ice_invocationTimeout(-2)->ice_ping();
#ifdef ICE_CPP11_MAPPING
- timeout->ice_invocationTimeout(-2)->ice_pingAsync()->waitForCompleted();
+ timeout->ice_invocationTimeout(-2)->ice_pingAsync().get();
#else
timeout->ice_invocationTimeout(-2)->begin_ice_ping()->waitForCompleted();
#endif