summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/background/TestI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/background/TestI.cpp')
-rw-r--r--cpp/test/Ice/background/TestI.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/Ice/background/TestI.cpp b/cpp/test/Ice/background/TestI.cpp
index c9f61ecbe92..053b6138e3b 100644
--- a/cpp/test/Ice/background/TestI.cpp
+++ b/cpp/test/Ice/background/TestI.cpp
@@ -20,7 +20,7 @@ BackgroundI::op(const Ice::Current& current)
}
void
-BackgroundI::opWithPayload(const Ice::ByteSeq&, const Ice::Current& current)
+BackgroundI::opWithPayload(ICE_IN(Ice::ByteSeq), const Ice::Current& current)
{
_controller->checkCallPause(current);
}
@@ -37,14 +37,14 @@ BackgroundI::BackgroundI(const BackgroundControllerIPtr& controller) :
}
void
-BackgroundControllerI::pauseCall(const string& opName, const Ice::Current&)
+BackgroundControllerI::pauseCall(ICE_IN(string) opName, const Ice::Current&)
{
Lock sync(*this);
_pausedCalls.insert(opName);
}
void
-BackgroundControllerI::resumeCall(const string& opName, const Ice::Current&)
+BackgroundControllerI::resumeCall(ICE_IN(string) opName, const Ice::Current&)
{
Lock sync(*this);
_pausedCalls.erase(opName);