diff options
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; } |