summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/dispatcher/TestI.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2016-02-03 10:42:29 +0100
committerBenoit Foucher <benoit@zeroc.com>2016-02-03 10:42:29 +0100
commit18a6720fcc3ece576f5fb26283e239cda2bebadd (patch)
treea7d9de0acab9e092943fb182fa880b2c4b950db6 /cpp/test/Ice/dispatcher/TestI.cpp
parentICE-6861 - Java stream API changes (diff)
downloadice-18a6720fcc3ece576f5fb26283e239cda2bebadd.tar.bz2
ice-18a6720fcc3ece576f5fb26283e239cda2bebadd.tar.xz
ice-18a6720fcc3ece576f5fb26283e239cda2bebadd.zip
Refactored invocation code to better suite new C++11 mapping
Diffstat (limited to 'cpp/test/Ice/dispatcher/TestI.cpp')
-rw-r--r--cpp/test/Ice/dispatcher/TestI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/dispatcher/TestI.cpp b/cpp/test/Ice/dispatcher/TestI.cpp
index 03292582ca5..d99aae39f4c 100644
--- a/cpp/test/Ice/dispatcher/TestI.cpp
+++ b/cpp/test/Ice/dispatcher/TestI.cpp
@@ -50,14 +50,14 @@ TestIntfControllerI::holdAdapter(const Ice::Current&)
test(Dispatcher::isDispatcherThread());
_adapter->hold();
}
-
+
void
TestIntfControllerI::resumeAdapter(const Ice::Current&)
{
test(Dispatcher::isDispatcherThread());
_adapter->activate();
}
-
+
TestIntfControllerI::TestIntfControllerI(const Ice::ObjectAdapterPtr& adapter) : _adapter(adapter)
{
}