diff options
Diffstat (limited to 'cpp/test/Ice/proxy/Collocated.cpp')
-rw-r--r-- | cpp/test/Ice/proxy/Collocated.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/proxy/Collocated.cpp b/cpp/test/Ice/proxy/Collocated.cpp index f27d5051d8c..886b173e4c9 100644 --- a/cpp/test/Ice/proxy/Collocated.cpp +++ b/cpp/test/Ice/proxy/Collocated.cpp @@ -21,8 +21,8 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator, adapter->add(new MyDerivedClassI, communicator->stringToIdentity("test")); adapter->activate(); - Test::MyClassPrx allTests(const Ice::CommunicatorPtr&, bool); - allTests(communicator, true); + Test::MyClassPrx allTests(const Ice::CommunicatorPtr&); + allTests(communicator); return EXIT_SUCCESS; } |