diff options
author | elliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-04-19 14:00:36 +0000 |
---|---|---|
committer | elliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-04-19 14:00:36 +0000 |
commit | c9e210e63790151989f573474d8d34f4d383d803 (patch) | |
tree | 805ea3fe6f0b4808186fb7e5302e40c4714913f5 /ACE/ace | |
parent | 1d87fad83da56b235d7bce962c80daf30219f229 (diff) | |
download | ATCD-c9e210e63790151989f573474d8d34f4d383d803.tar.gz |
ChangeLogTag: Thu Apr 19 13:59:06 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'ACE/ace')
-rw-r--r-- | ACE/ace/Obstack_T.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ACE/ace/Obstack_T.cpp b/ACE/ace/Obstack_T.cpp index 4bea0e431a5..2aab729d9a2 100644 --- a/ACE/ace/Obstack_T.cpp +++ b/ACE/ace/Obstack_T.cpp @@ -124,7 +124,9 @@ template <class CHAR> ACE_Obstack_T<CHAR>::ACE_Obstack_T (size_t size, ACE_Allocator *allocator_strategy) : allocator_strategy_ (allocator_strategy), - size_ (size) + size_ (size), + head_ (0), + curr_ (0) { ACE_TRACE ("ACE_Obstack_T<CHAR>::ACE_Obstack"); |