summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2006-10-03 15:03:45 +0000
committerSteve Huston <shuston@riverace.com>2006-10-03 15:03:45 +0000
commitb76f4fdba7ccecccd1be53bb52157894dee8f85c (patch)
tree42157480f22f3ca9334e691f9017329e1d206e02
parent0525686b44fb538ed46cbad76398df89555d8772 (diff)
downloadATCD-b76f4fdba7ccecccd1be53bb52157894dee8f85c.tar.gz
ChangeLogTag:Tue Oct 3 15:02:14 UTC 2006 Steve Huston <shuston@riverace.com>
-rw-r--r--ACE/ChangeLog5
-rw-r--r--ACE/NEWS6
2 files changed, 11 insertions, 0 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index e9db9ccbfd9..a478c81a759 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,8 @@
+Tue Oct 3 15:02:14 UTC 2006 Steve Huston <shuston@riverace.com>
+
+ * NEWS: Described the ACE_Refcounted_Auto_Ptr effects of
+ Thu Jul 6 20:45:15 UTC 2006 Steve Huston <shuston@riverace.com>
+
Mon Oct 2 12:21:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Log_Msg.cpp:
diff --git a/ACE/NEWS b/ACE/NEWS
index 97352fe7f7b..a5673202292 100644
--- a/ACE/NEWS
+++ b/ACE/NEWS
@@ -77,6 +77,12 @@ USER VISIBLE CHANGES BETWEEN ACE-5.5.2 and ACE-5.5.3
HP-UX 11i Version 1.5 the naming scheme is lib*.sl for PA and
lib*.so on IPF.
+. The ACE_Refcounted_Auto_Ptr reset() and release() methods were changed
+ per Bugzilla #1925. They will both now detach from the underlying
+ ACE_Refcounted_Auto_Ptr_Rep object; reset() will create a new one for
+ the new pointer specified as its argument. This change may cause referenced
+ objects to be deleted in cases where previous ACE versions would not have.
+
. The return type of "ACE_Refcounted_Auto_Ptr::null (void) const" changed
from int to bool. It's possible values, true and false, have not changed.