diff options
Diffstat (limited to 'cpp/src/Ice/CommunicatorI.cpp')
-rw-r--r-- | cpp/src/Ice/CommunicatorI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/CommunicatorI.cpp b/cpp/src/Ice/CommunicatorI.cpp index 920c3e419f1..0434bb90a7a 100644 --- a/cpp/src/Ice/CommunicatorI.cpp +++ b/cpp/src/Ice/CommunicatorI.cpp @@ -344,13 +344,13 @@ Ice::CommunicatorI::flushBatchRequests() _instance->flushBatchRequests(); } -Ice::CommunicatorI::CommunicatorI(int& argc, char* argv[], const PropertiesPtr& properties) : +Ice::CommunicatorI::CommunicatorI(const PropertiesPtr& properties) : _destroyed(false) { __setNoDelete(true); try { - _instance = new Instance(this, argc, argv, properties); + _instance = new Instance(this, properties); // // Keep a reference to the dynamic library list to ensure |