diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-03-21 17:44:56 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-03-21 17:44:56 +0000 |
commit | beb7f743a7357c47b0f682e954e430fe51fb1d5a (patch) | |
tree | 8638ef00553972d69ee52f53028b8e185de773f1 /TAO/tests/Param_Test | |
parent | 177c2985dd7f463c052ecf38e1bb8b5efa1ea478 (diff) | |
download | ATCD-beb7f743a7357c47b0f682e954e430fe51fb1d5a.tar.gz |
ChangeLogTag: Fri Mar 21 11:41:10 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
Diffstat (limited to 'TAO/tests/Param_Test')
-rw-r--r-- | TAO/tests/Param_Test/anyop.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/Param_Test/anyop.cpp b/TAO/tests/Param_Test/anyop.cpp index 9a59d2d267b..153a1366d56 100644 --- a/TAO/tests/Param_Test/anyop.cpp +++ b/TAO/tests/Param_Test/anyop.cpp @@ -121,9 +121,9 @@ main (int argc, char *argv[]) "Mismatched Param_Test extraction\n")); } - CORBA::Object_ptr other; + CORBA::Object_var other; - if (!(any >>= CORBA::Any::to_object (other))) + if (!(any >>= CORBA::Any::to_object (other.inout ()))) { ACE_DEBUG ((LM_DEBUG, "Cannot extract Param_Test as Object\n")); |