diff options
-rw-r--r-- | ChangeLog-99b | 8 | ||||
-rw-r--r-- | tests/CDR_Test.cpp | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b index 28eda03109e..1c10064aa7a 100644 --- a/ChangeLog-99b +++ b/ChangeLog-99b @@ -1,3 +1,11 @@ +Mon Feb 01 13:08:11 1999 Jeff Parsons <parsons@cs.wustl.edu> + + * tests/CDR_Test.cpp: + Used an auto_ptr to manage a string sent to string_read(). I + had included the .h file for auto ptrs (Carlos corrected my + typo, see below), but had never checked in the code using + auto_ptr. + Mon Feb 01 12:54:11 1999 Steve Huston <shuston@riverace.com> * ace/NT_Service.(h i): Some fixes provided by Martin Krumpolec diff --git a/tests/CDR_Test.cpp b/tests/CDR_Test.cpp index d3320c2d9c3..715411c734f 100644 --- a/tests/CDR_Test.cpp +++ b/tests/CDR_Test.cpp @@ -170,7 +170,7 @@ test_get (ACE_InputCDR &cdr, const CDR_Test_Types &test_types) "read_string2[%d] failed\n", i), 1); - auto_ptr<CDR::Char> auto_xstr (xstr); + ACE_Auto_Basic_Ptr<CDR::Char> auto_xstr (xstr); if (ACE_OS::strcmp (auto_xstr.get (), test_types.str) != 0) ACE_ERROR_RETURN ((LM_ERROR, "string[%d] differs\n", |