diff options
Diffstat (limited to 'cpp/test/Ice/proxy/TestAMDI.cpp')
-rw-r--r-- | cpp/test/Ice/proxy/TestAMDI.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/test/Ice/proxy/TestAMDI.cpp b/cpp/test/Ice/proxy/TestAMDI.cpp index 8ed80f009f2..968ab15ad3a 100644 --- a/cpp/test/Ice/proxy/TestAMDI.cpp +++ b/cpp/test/Ice/proxy/TestAMDI.cpp @@ -21,8 +21,8 @@ MyDerivedClassI::MyDerivedClassI() void MyDerivedClassI::echoAsync( shared_ptr<Ice::ObjectPrx> obj, - function<void (const shared_ptr<Ice::ObjectPrx>&)> response, - function<void (exception_ptr)>, + function<void(const shared_ptr<Ice::ObjectPrx>&)> response, + function<void(exception_ptr)>, const Ice::Current&) { response(obj); @@ -30,8 +30,8 @@ MyDerivedClassI::echoAsync( void MyDerivedClassI::shutdownAsync( - function<void ()> response, - function<void (exception_ptr)>, + function<void()> response, + function<void(exception_ptr)>, const Ice::Current& current) { current.adapter->getCommunicator()->shutdown(); @@ -40,8 +40,8 @@ MyDerivedClassI::shutdownAsync( void MyDerivedClassI::getContextAsync( - function<void (const Ice::Context&)> response, - function<void (exception_ptr)>, + function<void(const Ice::Context&)> response, + function<void(exception_ptr)>, const Ice::Current&) { response(_ctx); |