diff options
author | Jose <jose@zeroc.com> | 2015-12-18 14:05:33 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-12-18 14:05:33 +0100 |
commit | 9ae75237e0784fd302d94b5dd2ec34e42d2c3681 (patch) | |
tree | 7e0a96821ce32d734ce3cf39e1d9f8ab5435bbd1 /cpp/test/Ice/background/Client.cpp | |
parent | Disable running C++11 travis tests (diff) | |
download | ice-9ae75237e0784fd302d94b5dd2ec34e42d2c3681.tar.bz2 ice-9ae75237e0784fd302d94b5dd2ec34e42d2c3681.tar.xz ice-9ae75237e0784fd302d94b5dd2ec34e42d2c3681.zip |
C++11 background & metrics test fixes
Diffstat (limited to 'cpp/test/Ice/background/Client.cpp')
-rw-r--r-- | cpp/test/Ice/background/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/background/Client.cpp b/cpp/test/Ice/background/Client.cpp index 699605bd494..12dc63fb095 100644 --- a/cpp/test/Ice/background/Client.cpp +++ b/cpp/test/Ice/background/Client.cpp @@ -18,8 +18,8 @@ using namespace Test; int run(int, char**, const Ice::CommunicatorPtr& communicator) { - BackgroundPrx allTests(const Ice::CommunicatorPtr&); - BackgroundPrx background = allTests(communicator); + BackgroundPrxPtr allTests(const Ice::CommunicatorPtr&); + BackgroundPrxPtr background = allTests(communicator); background->shutdown(); return EXIT_SUCCESS; } |