diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-03-16 23:53:24 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-03-16 23:53:24 +0000 |
commit | 7ed41b49453a4e9d955c7617a0a230ba5e60dccf (patch) | |
tree | 47c3ef1420aa36a0fb285085c7a2edee27ce8b1a | |
parent | 0a65e0328ec9f2086c7d0903008c357ce201ede2 (diff) | |
download | ATCD-7ed41b49453a4e9d955c7617a0a230ba5e60dccf.tar.gz |
Removed uses of foo_ptr for non-interface types.
-rw-r--r-- | TAO/tests/Param_Test/param_test_i.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/Param_Test/param_test_i.cpp b/TAO/tests/Param_Test/param_test_i.cpp index 5e42830edd3..22cc5c55206 100644 --- a/TAO/tests/Param_Test/param_test_i.cpp +++ b/TAO/tests/Param_Test/param_test_i.cpp @@ -765,8 +765,8 @@ Param_Test_i::test_any (const CORBA::Any &a1, char *str_in; Coffee_ptr coffee; Param_Test::Fixed_Array_forany array; - Param_Test::Short_Seq_ptr ub_short_sequence; - Param_Test::Bounded_Short_Seq_ptr bd_short_sequence; + Param_Test::Short_Seq *ub_short_sequence; + Param_Test::Bounded_Short_Seq *bd_short_sequence; Param_Test::Fixed_Struct *fixed_structure; Param_Test::Big_Union *big_union; |