diff options
Diffstat (limited to 'cpp/test/Ice/ami/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/ami/TestI.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cpp/test/Ice/ami/TestI.cpp b/cpp/test/Ice/ami/TestI.cpp index e418621289d..6e066e72ca9 100644 --- a/cpp/test/Ice/ami/TestI.cpp +++ b/cpp/test/Ice/ami/TestI.cpp @@ -35,8 +35,14 @@ TestIntfI::opWithUE(const Ice::Current&) throw Test::TestIntfException(); } +int +TestIntfI::opWithResultAndUE(const Ice::Current&) +{ + throw Test::TestIntfException(); +} + void -TestIntfI::opWithPayload(const Ice::ByteSeq&, const Ice::Current&) +TestIntfI::opWithPayload(ICE_IN(Ice::ByteSeq), const Ice::Current&) { } |