diff options
Diffstat (limited to 'cpp/test/Ice/operations/Client.cpp')
-rw-r--r-- | cpp/test/Ice/operations/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/operations/Client.cpp b/cpp/test/Ice/operations/Client.cpp index a7ea950191e..26d25217968 100644 --- a/cpp/test/Ice/operations/Client.cpp +++ b/cpp/test/Ice/operations/Client.cpp @@ -15,9 +15,9 @@ using namespace std; int -run(int argc, char* argv[], Ice::CommunicatorPtr communicator) +run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { - Test::MyClassPrx allTests(Ice::CommunicatorPtr); + Test::MyClassPrx allTests(const Ice::CommunicatorPtr&); Test::MyClassPrx myClass = allTests(communicator); cout << "testing server shutdown... " << flush; |