diff options
author | Jose <jose@zeroc.com> | 2015-12-18 14:05:33 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-12-18 14:05:33 +0100 |
commit | 9ae75237e0784fd302d94b5dd2ec34e42d2c3681 (patch) | |
tree | 7e0a96821ce32d734ce3cf39e1d9f8ab5435bbd1 /cpp/test/Ice/background/TestI.cpp | |
parent | Disable running C++11 travis tests (diff) | |
download | ice-9ae75237e0784fd302d94b5dd2ec34e42d2c3681.tar.bz2 ice-9ae75237e0784fd302d94b5dd2ec34e42d2c3681.tar.xz ice-9ae75237e0784fd302d94b5dd2ec34e42d2c3681.zip |
C++11 background & metrics test fixes
Diffstat (limited to 'cpp/test/Ice/background/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/background/TestI.cpp | 6 |
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); |