summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/admin/TestI.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2015-12-09 23:09:20 +0100
committerJose <jose@zeroc.com>2015-12-09 23:09:20 +0100
commita00673a2c1d9634102f91b7c6ebdd453d55a708f (patch)
tree2097f43ff5a1516b353ed0e88cc7b4174a518a17 /cpp/test/Ice/admin/TestI.cpp
parentWindows build fixes (diff)
downloadice-a00673a2c1d9634102f91b7c6ebdd453d55a708f.tar.bz2
ice-a00673a2c1d9634102f91b7c6ebdd453d55a708f.tar.xz
ice-a00673a2c1d9634102f91b7c6ebdd453d55a708f.zip
C++11 mapping server side input parameter fixes
Diffstat (limited to 'cpp/test/Ice/admin/TestI.cpp')
-rw-r--r--cpp/test/Ice/admin/TestI.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/test/Ice/admin/TestI.cpp b/cpp/test/Ice/admin/TestI.cpp
index 3cd1188aa1f..64ab0d191af 100644
--- a/cpp/test/Ice/admin/TestI.cpp
+++ b/cpp/test/Ice/admin/TestI.cpp
@@ -88,23 +88,23 @@ RemoteCommunicatorI::getChanges(const Ice::Current&)
}
void
-RemoteCommunicatorI::print(const std::string& message, const Ice::Current&)
+RemoteCommunicatorI::print(ICE_IN(std::string) message, const Ice::Current&)
{
_communicator->getLogger()->print(message);
}
void
-RemoteCommunicatorI::trace(const std::string& category,
- const std::string& message, const Ice::Current&)
+RemoteCommunicatorI::trace(ICE_IN(std::string) category,
+ ICE_IN(std::string) message, const Ice::Current&)
{
_communicator->getLogger()->trace(category, message);
}
void
-RemoteCommunicatorI::warning(const std::string& message, const Ice::Current&)
+RemoteCommunicatorI::warning(ICE_IN(std::string) message, const Ice::Current&)
{
_communicator->getLogger()->warning(message);
}
void
-RemoteCommunicatorI::error(const std::string& message, const Ice::Current&)
+RemoteCommunicatorI::error(ICE_IN(std::string) message, const Ice::Current&)
{
_communicator->getLogger()->error(message);
}
@@ -142,7 +142,7 @@ RemoteCommunicatorI::updated(const Ice::PropertyDict& changes)
}
Test::RemoteCommunicatorPrxPtr
-RemoteCommunicatorFactoryI::createCommunicator(const Ice::PropertyDict& props, const Ice::Current& current)
+RemoteCommunicatorFactoryI::createCommunicator(ICE_IN(Ice::PropertyDict) props, const Ice::Current& current)
{
//
// Prepare the property set using the given properties.