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/invoke/BlobjectI.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/invoke/BlobjectI.cpp')
-rw-r--r-- | cpp/test/Ice/invoke/BlobjectI.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/Ice/invoke/BlobjectI.cpp b/cpp/test/Ice/invoke/BlobjectI.cpp index 421c8505061..b23d44dbc5c 100644 --- a/cpp/test/Ice/invoke/BlobjectI.cpp +++ b/cpp/test/Ice/invoke/BlobjectI.cpp @@ -97,8 +97,8 @@ BlobjectArrayI::ice_invoke(const pair<const Ice::Byte*, const Ice::Byte*>& inEnc #ifdef ICE_CPP11_MAPPING void BlobjectAsyncI::ice_invokeAsync(vector<Ice::Byte> inEncaps, - function<void (bool, vector<Ice::Byte>)> response, - function<void (exception_ptr)>, + function<void(bool, vector<Ice::Byte>)> response, + function<void(exception_ptr)>, const Ice::Current& current) { Ice::InputStream in(current.adapter->getCommunicator(), inEncaps); @@ -109,8 +109,8 @@ BlobjectAsyncI::ice_invokeAsync(vector<Ice::Byte> inEncaps, void BlobjectArrayAsyncI::ice_invokeAsync(pair<const Ice::Byte*, const Ice::Byte*> inEncaps, - function<void (bool, pair<const Ice::Byte*, const Ice::Byte*>)> response, - function<void (exception_ptr)>, + function<void(bool, pair<const Ice::Byte*, const Ice::Byte*>)> response, + function<void(exception_ptr)>, const Ice::Current& current) { Ice::InputStream in(current.adapter->getCommunicator(), inEncaps); |