diff options
author | Joe George <joe@zeroc.com> | 2016-06-13 14:16:45 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2016-06-13 14:16:45 -0400 |
commit | c734ce59a48b0422b1b0c9bddd9bc0a56bdfbd85 (patch) | |
tree | c0c227e57385a939354e7ed98876ef237f3fa8e0 /cpp/test/Ice/interceptor/MyObjectI.cpp | |
parent | Rename Ice Touch references to Ice (diff) | |
download | ice-c734ce59a48b0422b1b0c9bddd9bc0a56bdfbd85.tar.bz2 ice-c734ce59a48b0422b1b0c9bddd9bc0a56bdfbd85.tar.xz ice-c734ce59a48b0422b1b0c9bddd9bc0a56bdfbd85.zip |
ICE-7179 - Update std::function code style
Diffstat (limited to 'cpp/test/Ice/interceptor/MyObjectI.cpp')
-rw-r--r-- | cpp/test/Ice/interceptor/MyObjectI.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/cpp/test/Ice/interceptor/MyObjectI.cpp b/cpp/test/Ice/interceptor/MyObjectI.cpp index dc20205f3f2..c59fb3c150d 100644 --- a/cpp/test/Ice/interceptor/MyObjectI.cpp +++ b/cpp/test/Ice/interceptor/MyObjectI.cpp @@ -86,8 +86,8 @@ MyObjectI::badSystemAdd(int, int, const Ice::Current&) void MyObjectI::amdAddAsync(int x, int y, - function<void (int)> response, - function<void (exception_ptr)>, + function<void(int)> response, + function<void(exception_ptr)>, const Ice::Current&) { thread t( @@ -102,8 +102,8 @@ MyObjectI::amdAddAsync(int x, void MyObjectI::amdAddWithRetryAsync(int x, int y, - function<void (int)> response, - function<void (exception_ptr)>, + function<void(int)> response, + function<void(exception_ptr)>, const Ice::Current& current) { thread t( @@ -125,8 +125,8 @@ MyObjectI::amdAddWithRetryAsync(int x, void MyObjectI::amdBadAddAsync(int x, int y, - function<void (int)>, - function<void (exception_ptr)> error, + function<void(int)>, + function<void(exception_ptr)> error, const Ice::Current&) { thread t( @@ -148,8 +148,8 @@ MyObjectI::amdBadAddAsync(int x, void MyObjectI::amdNotExistAddAsync(int x, int y, - function<void (int)>, - function<void (exception_ptr)> error, + function<void(int)>, + function<void(exception_ptr)> error, const Ice::Current&) { thread t( @@ -171,8 +171,8 @@ MyObjectI::amdNotExistAddAsync(int x, void MyObjectI::amdBadSystemAddAsync(int x, int y, - function<void (int)>, - function<void (exception_ptr)> error, + function<void(int)>, + function<void(exception_ptr)> error, const Ice::Current&) { thread t( |