diff options
author | Jose <jose@zeroc.com> | 2013-08-26 20:16:09 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2013-08-26 20:16:09 +0200 |
commit | d616b7e85ed02f362eb4cbd11063d62dd6c104db (patch) | |
tree | d3d9d043a17ac9fd011a9d35aef8c449fe4cb2f9 /cpp/test/Ice/ami/TestI.cpp | |
parent | ICE-5404 - IceSSL test failure on SLES11SP3 (diff) | |
download | ice-d616b7e85ed02f362eb4cbd11063d62dd6c104db.tar.bz2 ice-d616b7e85ed02f362eb4cbd11063d62dd6c104db.tar.xz ice-d616b7e85ed02f362eb4cbd11063d62dd6c104db.zip |
Fixed ICE-5402 - VS2010: generated code does not compile if method has more than 10 out parameters
Diffstat (limited to 'cpp/test/Ice/ami/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/ami/TestI.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cpp/test/Ice/ami/TestI.cpp b/cpp/test/Ice/ami/TestI.cpp index e4b4b59a1a4..cc59376d94e 100644 --- a/cpp/test/Ice/ami/TestI.cpp +++ b/cpp/test/Ice/ami/TestI.cpp @@ -55,6 +55,24 @@ TestIntfI::opBatchCount(const Ice::Current&) return _batchCount; } +void +TestIntfI::opWitArgs(Ice::Int& one, Ice::Int& two, Ice::Int& three, Ice::Int& four, Ice::Int& five, Ice::Int& six, + Ice::Int& seven, Ice::Int& eight, Ice::Int& nine, Ice::Int& ten, Ice::Int& eleven, + const Ice::Current&) +{ + one = 1; + two = 2; + three = 3; + four = 4; + five = 5; + six = 6; + seven = 7; + eight = 8; + nine = 9; + ten = 10; + eleven = 11; +} + bool TestIntfI::waitForBatch(Ice::Int count, const Ice::Current&) { @@ -95,3 +113,4 @@ TestIntfControllerI::resumeAdapter(const Ice::Current&) TestIntfControllerI::TestIntfControllerI(const Ice::ObjectAdapterPtr& adapter) : _adapter(adapter) { } + |