summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/operations/Collocated.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2006-10-24 01:59:22 +0000
committerBernard Normier <bernard@zeroc.com>2006-10-24 01:59:22 +0000
commitd38dd2de23986dba846fae8454d60b6711b964b3 (patch)
tree41523b39de7512673f83e1e1831c62bf367cf99c /cpp/test/Ice/operations/Collocated.cpp
parentchanging archive name (diff)
downloadice-d38dd2de23986dba846fae8454d60b6711b964b3.tar.bz2
ice-d38dd2de23986dba846fae8454d60b6711b964b3.tar.xz
ice-d38dd2de23986dba846fae8454d60b6711b964b3.zip
ImplicitContext test and fixes
Diffstat (limited to 'cpp/test/Ice/operations/Collocated.cpp')
-rw-r--r--cpp/test/Ice/operations/Collocated.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/operations/Collocated.cpp b/cpp/test/Ice/operations/Collocated.cpp
index ca0e74e0563..58a734b368c 100644
--- a/cpp/test/Ice/operations/Collocated.cpp
+++ b/cpp/test/Ice/operations/Collocated.cpp
@@ -23,8 +23,8 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator,
adapter->add(new TestCheckedCastI, communicator->stringToIdentity("context"));
adapter->activate();
- Test::MyClassPrx allTests(const Ice::CommunicatorPtr&, const Ice::InitializationData&, bool);
- allTests(communicator, initData, true);
+ Test::MyClassPrx allTests(const Ice::CommunicatorPtr&, bool);
+ allTests(communicator, true);
return EXIT_SUCCESS;
}