diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-07-13 16:27:20 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-07-13 16:27:20 +0000 |
commit | 304116a74eb3684546f05c4a8fff34d92de3ced0 (patch) | |
tree | e7299c009226539c6521f9bdc89ee7fe825ad8c2 /ace/Malloc_T.cpp | |
parent | 973336b87ed005ff699a8c1e651bdd36e441ad40 (diff) | |
download | ATCD-304116a74eb3684546f05c4a8fff34d92de3ced0.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Malloc_T.cpp')
-rw-r--r-- | ace/Malloc_T.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Malloc_T.cpp b/ace/Malloc_T.cpp index d6f784c4aad..1c7df2a1b5b 100644 --- a/ace/Malloc_T.cpp +++ b/ace/Malloc_T.cpp @@ -20,7 +20,7 @@ ACE_Cached_Allocator<T, LOCK>::ACE_Cached_Allocator (size_t n_chunks) // ERRNO could be lost because this is within ctor for (size_t c = 0 ; c < n_chunks ; c++) - this->free_list_.add (new (&this->pool_ [c]) ACE_Cached_Mem_Pool_Node_T<T>); + this->free_list_.add (new (&this->pool_ [c]) ACE_Cached_Mem_Pool_Node<T>); // put into free list using placement contructor, no real memory // allocation in the above new } |