summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/objects/TestI.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-02-10 10:38:44 +0100
committerJose <jose@zeroc.com>2017-02-10 10:38:44 +0100
commit24e4a7e926c8ef99bf531c1576b940fb1b1c42d1 (patch)
treea8952b230126a983b7db08fce316124612169018 /cpp/test/Ice/objects/TestI.cpp
parentFixed ICE-7554 - Ice/ami failure on macOS (diff)
downloadice-24e4a7e926c8ef99bf531c1576b940fb1b1c42d1.tar.bz2
ice-24e4a7e926c8ef99bf531c1576b940fb1b1c42d1.tar.xz
ice-24e4a7e926c8ef99bf531c1576b940fb1b1c42d1.zip
Fix (ICE-7562) - Eliminate class-with-operation deprecated warnings
Diffstat (limited to 'cpp/test/Ice/objects/TestI.cpp')
-rw-r--r--cpp/test/Ice/objects/TestI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/objects/TestI.cpp b/cpp/test/Ice/objects/TestI.cpp
index a9c453ee104..dd57dea7762 100644
--- a/cpp/test/Ice/objects/TestI.cpp
+++ b/cpp/test/Ice/objects/TestI.cpp
@@ -55,7 +55,7 @@ EI::EI() :
}
bool
-EI::checkValues(const Ice::Current&)
+EI::checkValues()
{
return i == 1 && s == "hello";
}
@@ -70,7 +70,7 @@ FI::FI(const EPtr& e) :
}
bool
-FI::checkValues(const Ice::Current&)
+FI::checkValues()
{
return e1 && e1 == e2;
}