summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2002-08-02 12:56:13 +0000
committerbala <balanatarajan@users.noreply.github.com>2002-08-02 12:56:13 +0000
commit9f5b8965e861ef3a41eab464ec5eb0700238ca61 (patch)
tree17f547f4d0f1c3d360077dddc0566570ec81aca9
parent3ef8610b60030c69cd74b4e244726f5b1ad59769 (diff)
downloadATCD-9f5b8965e861ef3a41eab464ec5eb0700238ca61.tar.gz
ChangeLogTag: Fri Aug 2 07:54:24 2002 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--ace/Malloc.cpp4
3 files changed, 14 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 8e6437ddd82..4b4cd48cc5a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Aug 2 07:54:24 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * ace/Malloc.cpp: Rearranged member initialization list in the
+ constructor of ACE_Malloc_Stats, to fix warnings with explicit
+ template builds.
+
Thu Aug 01 13:40:59 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/Malloc_Test.cpp: Changed the usage of ASYS_TEXT to
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 8e6437ddd82..4b4cd48cc5a 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Fri Aug 2 07:54:24 2002 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * ace/Malloc.cpp: Rearranged member initialization list in the
+ constructor of ACE_Malloc_Stats, to fix warnings with explicit
+ template builds.
+
Thu Aug 01 13:40:59 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/Malloc_Test.cpp: Changed the usage of ASYS_TEXT to
diff --git a/ace/Malloc.cpp b/ace/Malloc.cpp
index 01c6353b5e7..ea23fb7f871 100644
--- a/ace/Malloc.cpp
+++ b/ace/Malloc.cpp
@@ -161,8 +161,8 @@ ACE_Control_Block::ACE_Name_Node::dump (void) const
#if defined (ACE_HAS_MALLOC_STATS)
ACE_Malloc_Stats::ACE_Malloc_Stats (void)
- : nblocks_ (0),
- nchunks_ (0),
+ : nchunks_ (0),
+ nblocks_ (0),
ninuse_ (0)
{
ACE_TRACE ("ACE_Malloc_Stats::ACE_Malloc_Stats");