summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-09-24 11:13:40 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-09-24 11:13:40 +0000
commitc43d67d5807e72c057f355597434b84b7c00209d (patch)
tree250258b273473883f635042c5488889503b4891a
parent429b09b702e00b39a82af1a0a681082463bb127a (diff)
downloadATCD-c43d67d5807e72c057f355597434b84b7c00209d.tar.gz
Fri Sep 24 07:12:12 2004 Carlos O'Ryan <coryan@atdesk.com>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/tests/Sequence_Unit_Tests/allocation_traits.hpp1
2 files changed, 8 insertions, 0 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 4910329952c..cffc85dd3e3 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Fri Sep 24 07:12:12 2004 Carlos O'Ryan <coryan@atdesk.com>
+
+ * tests/Sequence_Unit_Tests/allocation_traits.hpp:
+ Add missing return statement to allocbuf() for bounded strings
+ of reference-like types. Since this code is not used yet it is
+ quite cool that gcc-3.2.3 was able to pick the problem.
+
Fri Sep 24 10:18:24 2004 <ops@iki.fi>
* orbsvcs/CosEvent_Service/CosEvent_Service.mpc:
diff --git a/TAO/tests/Sequence_Unit_Tests/allocation_traits.hpp b/TAO/tests/Sequence_Unit_Tests/allocation_traits.hpp
index 24727f943ef..29adf7b9cc1 100644
--- a/TAO/tests/Sequence_Unit_Tests/allocation_traits.hpp
+++ b/TAO/tests/Sequence_Unit_Tests/allocation_traits.hpp
@@ -117,6 +117,7 @@ struct bounded_reference_allocation_traits
{
value_type * buffer = base_allocation_traits::allocbuf(MAX);
reference_traits::zero_range(buffer, buffer + MAX);
+ return buffer;
}
inline static void freebuf(value_type * buffer)