summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/hold/Client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/hold/Client.cpp')
-rw-r--r--cpp/test/Ice/hold/Client.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/test/Ice/hold/Client.cpp b/cpp/test/Ice/hold/Client.cpp
index a9d5fb23ab9..3517d43ca34 100644
--- a/cpp/test/Ice/hold/Client.cpp
+++ b/cpp/test/Ice/hold/Client.cpp
@@ -17,9 +17,8 @@ using namespace Test;
int
run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
{
- HoldPrx allTests(const Ice::CommunicatorPtr&);
- HoldPrx hold = allTests(communicator);
- hold->shutdown();
+ void allTests(const Ice::CommunicatorPtr&);
+ allTests(communicator);
return EXIT_SUCCESS;
}