diff options
author | Bernard Normier <bernard@zeroc.com> | 2017-03-13 16:29:33 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2017-03-13 16:29:33 -0400 |
commit | 0677d4051840412c5cd8a3b7b8e5ad86a6608f59 (patch) | |
tree | c620bc26e263120e823607b772776d3fab13f78a /cpp/test/Ice/exceptions/Server.cpp | |
parent | Fixed ICE-7665 - fixed test/Ice/imple GNU make warning (diff) | |
download | ice-0677d4051840412c5cd8a3b7b8e5ad86a6608f59.tar.bz2 ice-0677d4051840412c5cd8a3b7b8e5ad86a6608f59.tar.xz ice-0677d4051840412c5cd8a3b7b8e5ad86a6608f59.zip |
Added new ctors to Ice::CommunicatorHolder
Diffstat (limited to 'cpp/test/Ice/exceptions/Server.cpp')
-rw-r--r-- | cpp/test/Ice/exceptions/Server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/exceptions/Server.cpp b/cpp/test/Ice/exceptions/Server.cpp index b9540467038..13331397a38 100644 --- a/cpp/test/Ice/exceptions/Server.cpp +++ b/cpp/test/Ice/exceptions/Server.cpp @@ -52,7 +52,7 @@ main(int argc, char* argv[]) initData.properties->setProperty("Ice.Warn.Connections", "0"); initData.properties->setProperty("Ice.MessageSizeMax", "10"); // 10KB max - Ice::CommunicatorHolder ich = Ice::initialize(argc, argv, initData); + Ice::CommunicatorHolder ich(argc, argv, initData); return run(argc, argv, ich.communicator()); } catch(const Ice::Exception& ex) |