diff options
author | Jose <jose@zeroc.com> | 2017-02-10 10:38:44 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-02-10 10:38:44 +0100 |
commit | 24e4a7e926c8ef99bf531c1576b940fb1b1c42d1 (patch) | |
tree | a8952b230126a983b7db08fce316124612169018 /cpp/test/Ice/objects/TestI.cpp | |
parent | Fixed ICE-7554 - Ice/ami failure on macOS (diff) | |
download | ice-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.cpp | 4 |
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; } |