diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2001-03-19 02:13:56 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2001-03-19 02:13:56 +0000 |
commit | f6ee670315aa14dfbedf37a60d6f9bf478425290 (patch) | |
tree | 511fe9d7ca2fc30d963848d8f43327866f4c7ff1 /TAO/tests/Param_Test | |
parent | 393e3808e6d62ec2b6cf3d083366a392896d43da (diff) | |
download | ATCD-f6ee670315aa14dfbedf37a60d6f9bf478425290.tar.gz |
ChangeLogTag:Sun Mar 18 18:09:05 2001 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO/tests/Param_Test')
-rw-r--r-- | TAO/tests/Param_Test/ub_any_seq.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/Param_Test/ub_any_seq.cpp b/TAO/tests/Param_Test/ub_any_seq.cpp index c9806644fd4..c134ea9c69b 100644 --- a/TAO/tests/Param_Test/ub_any_seq.cpp +++ b/TAO/tests/Param_Test/ub_any_seq.cpp @@ -110,8 +110,8 @@ Test_AnySeq::init_parameters (Param_Test_ptr objref, CORBA::String_var str = gen->gen_string (); if (TAO_debug_level > 0) ACE_DEBUG ((LM_DEBUG, - "setting string = %s\n", str)); - this->in_[i] <<= str; + "setting string = %s\n", str.in ())); + this->in_[i] <<= str.in (); this->inout_[i] <<= 0; // different from in_ } break; @@ -175,8 +175,8 @@ Test_AnySeq::reset_parameters (void) case 1: { CORBA::String_var str = gen->gen_string (); - this->in_[i] <<= str; - this->inout_[i] <<= str; + this->in_[i] <<= str.in (); + this->inout_[i] <<= str.in (); } break; case 2: |