summaryrefslogtreecommitdiff
path: root/ace/Malloc_T.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-07-13 16:27:20 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-07-13 16:27:20 +0000
commit304116a74eb3684546f05c4a8fff34d92de3ced0 (patch)
treee7299c009226539c6521f9bdc89ee7fe825ad8c2 /ace/Malloc_T.cpp
parent973336b87ed005ff699a8c1e651bdd36e441ad40 (diff)
downloadATCD-304116a74eb3684546f05c4a8fff34d92de3ced0.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Malloc_T.cpp')
-rw-r--r--ace/Malloc_T.cpp2
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
}