summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/dispatcher/Client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/dispatcher/Client.cpp')
-rw-r--r--cpp/test/Ice/dispatcher/Client.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/Ice/dispatcher/Client.cpp b/cpp/test/Ice/dispatcher/Client.cpp
index 3c4e1735e01..b94e3199616 100644
--- a/cpp/test/Ice/dispatcher/Client.cpp
+++ b/cpp/test/Ice/dispatcher/Client.cpp
@@ -29,7 +29,7 @@ class DispatcherCall : public Ice::DispatcherCall
{
public:
- DispatcherCall(function<void ()> call) :
+ DispatcherCall(function<void()> call) :
_call(move(call))
{
}
@@ -41,7 +41,7 @@ public:
private:
- function<void ()> _call;
+ function<void()> _call;
};
#endif
@@ -65,7 +65,7 @@ main(int argc, char* argv[])
#ifdef ICE_CPP11_MAPPING
Ice::DispatcherPtr dispatcher = new Dispatcher();
- initData.dispatcher = [=](function<void ()> call, const shared_ptr<Ice::Connection>& conn)
+ initData.dispatcher = [=](function<void()> call, const shared_ptr<Ice::Connection>& conn)
{
dispatcher->dispatch(new DispatcherCall(call), conn);
};