diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-08-30 04:31:22 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-08-30 04:31:22 +0000 |
commit | 6d64069608cb5e29a191ed8d2eb4d7e163aa0290 (patch) | |
tree | 9f02216ea2a0aaf7c1404e4f48dcc9e18cf151a6 /TAO/tests/Param_Test/ub_short_seq.cpp | |
parent | e8a745ea70a1df43a209f25c7ecc36a397249c8f (diff) | |
download | ATCD-6d64069608cb5e29a191ed8d2eb4d7e163aa0290.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/tests/Param_Test/ub_short_seq.cpp')
-rw-r--r-- | TAO/tests/Param_Test/ub_short_seq.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/Param_Test/ub_short_seq.cpp b/TAO/tests/Param_Test/ub_short_seq.cpp index 92ed60d1ecc..fa84e40d59f 100644 --- a/TAO/tests/Param_Test/ub_short_seq.cpp +++ b/TAO/tests/Param_Test/ub_short_seq.cpp @@ -100,15 +100,15 @@ Test_Short_Sequence::add_args (CORBA::NVList_ptr param_list, { CORBA::Any in_arg (Param_Test::_tc_Short_Seq, (void *) &this->in_.in (), - CORBA::B_FALSE); + 0); CORBA::Any inout_arg (Param_Test::_tc_Short_Seq, &this->inout_.inout (), - CORBA::B_FALSE); + 0); CORBA::Any out_arg (Param_Test::_tc_Short_Seq, &this->out_.inout (), // .out () causes crash - CORBA::B_FALSE); + 0); // add parameters param_list->add_value ("s1", @@ -129,7 +129,7 @@ Test_Short_Sequence::add_args (CORBA::NVList_ptr param_list, // add return value type retval->item (0, env)->value ()->replace (Param_Test::_tc_Short_Seq, &this->ret_.inout (), // see above - CORBA::B_FALSE, // does not own + 0, // does not own env); return 0; } |