diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-23 01:00:27 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-23 01:00:27 +0000 |
commit | aa57e33b4bf29c6211a07f24e204db537b6657cc (patch) | |
tree | 15e311d8359e943e0b22b6b009b5d762ed84fbdd /cpp/test/Ice/objects/Collocated.cpp | |
parent | fixes for windows; other fixes (diff) | |
download | ice-aa57e33b4bf29c6211a07f24e204db537b6657cc.tar.bz2 ice-aa57e33b4bf29c6211a07f24e204db537b6657cc.tar.xz ice-aa57e33b4bf29c6211a07f24e204db537b6657cc.zip |
fixed cyclic dependencies
Diffstat (limited to 'cpp/test/Ice/objects/Collocated.cpp')
-rw-r--r-- | cpp/test/Ice/objects/Collocated.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/objects/Collocated.cpp b/cpp/test/Ice/objects/Collocated.cpp index 7d216fe9d2e..99dfb5fa6fc 100644 --- a/cpp/test/Ice/objects/Collocated.cpp +++ b/cpp/test/Ice/objects/Collocated.cpp @@ -20,8 +20,8 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapterWithEndpoints("TestAdapter", endpts); InitialPtr initial = new InitialI(adapter); adapter->add(initial, "initial"); - InitialPrx allTests(const Ice::CommunicatorPtr&); - allTests(communicator); + InitialPrx allTests(const Ice::CommunicatorPtr&, bool); + initial->shutdown(); // We must call shutdown even in the collocated case for cyclic dependency cleanup return EXIT_SUCCESS; } |