summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/objects/Client.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-10-23 01:00:27 +0000
committerMarc Laukien <marc@zeroc.com>2001-10-23 01:00:27 +0000
commitaa57e33b4bf29c6211a07f24e204db537b6657cc (patch)
tree15e311d8359e943e0b22b6b009b5d762ed84fbdd /cpp/test/Ice/objects/Client.cpp
parentfixes for windows; other fixes (diff)
downloadice-aa57e33b4bf29c6211a07f24e204db537b6657cc.tar.bz2
ice-aa57e33b4bf29c6211a07f24e204db537b6657cc.tar.xz
ice-aa57e33b4bf29c6211a07f24e204db537b6657cc.zip
fixed cyclic dependencies
Diffstat (limited to 'cpp/test/Ice/objects/Client.cpp')
-rw-r--r--cpp/test/Ice/objects/Client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/objects/Client.cpp b/cpp/test/Ice/objects/Client.cpp
index 2c7f2b27ccd..b6226000e78 100644
--- a/cpp/test/Ice/objects/Client.cpp
+++ b/cpp/test/Ice/objects/Client.cpp
@@ -50,8 +50,8 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
communicator->addObjectFactory(factory, "::C");
communicator->addObjectFactory(factory, "::D");
- InitialPrx allTests(const Ice::CommunicatorPtr&);
- InitialPrx initial = allTests(communicator);
+ InitialPrx allTests(const Ice::CommunicatorPtr&, bool);
+ InitialPrx initial = allTests(communicator, false);
initial->shutdown();
return EXIT_SUCCESS;
}