summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-09-07 02:15:28 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-09-07 02:15:28 +0000
commit640073cc7ba68e3fe8ec898728dde7653f8a46b1 (patch)
treeca1f3d712a5869d7234b2c7b43b3ca7f09152431
parent259ef0e596906ed2782af2adfdff545e42523561 (diff)
downloadATCD-640073cc7ba68e3fe8ec898728dde7653f8a46b1.tar.gz
ChangeLogTag: Thu Sep 6 21:14:05 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-02a6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--tests/Logging_Strategy_Test.cpp2
4 files changed, 19 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 460aabe19f8..ea7f2cdaca6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Sep 6 21:14:05 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Logging_Strategy_Test.cpp: Changed the usage of auto_ptr
+ <> to ACE_Auto_Basic_Ptr<>. Thanks to Carlos O'Ryan for this
+ suggestion.
+
Thu Sep 06 18:42:39 2001 Steve Huston <shuston@riverace.com>
* examples/C++NPv1: New directory that contains all of the example
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 460aabe19f8..ea7f2cdaca6 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Thu Sep 6 21:14:05 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Logging_Strategy_Test.cpp: Changed the usage of auto_ptr
+ <> to ACE_Auto_Basic_Ptr<>. Thanks to Carlos O'Ryan for this
+ suggestion.
+
Thu Sep 06 18:42:39 2001 Steve Huston <shuston@riverace.com>
* examples/C++NPv1: New directory that contains all of the example
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 460aabe19f8..ea7f2cdaca6 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Thu Sep 6 21:14:05 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Logging_Strategy_Test.cpp: Changed the usage of auto_ptr
+ <> to ACE_Auto_Basic_Ptr<>. Thanks to Carlos O'Ryan for this
+ suggestion.
+
Thu Sep 06 18:42:39 2001 Steve Huston <shuston@riverace.com>
* examples/C++NPv1: New directory that contains all of the example
diff --git a/tests/Logging_Strategy_Test.cpp b/tests/Logging_Strategy_Test.cpp
index 9765dbdba4d..6e191bfc977 100644
--- a/tests/Logging_Strategy_Test.cpp
+++ b/tests/Logging_Strategy_Test.cpp
@@ -450,7 +450,7 @@ int main (int argc, ACE_TCHAR *argv [])
// statically
ACE_Logging_Strategy logging_strategy;
char ls_argc = argc - 1;
- auto_ptr<ACE_TCHAR *> ls_argv (new ACE_TCHAR *[ls_argc]);
+ ACE_Auto_Basic_ptr<ACE_TCHAR *> ls_argv (new ACE_TCHAR *[ls_argc]);
for (char c = 0; c < ls_argc; c++)
(ls_argv.get ())[c] = argv[c+1];