summaryrefslogtreecommitdiff
path: root/ace/Malloc_T.i
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.i
parent973336b87ed005ff699a8c1e651bdd36e441ad40 (diff)
downloadATCD-304116a74eb3684546f05c4a8fff34d92de3ced0.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Malloc_T.i')
-rw-r--r--ace/Malloc_T.i4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Malloc_T.i b/ace/Malloc_T.i
index 8b1193b3206..8beb1b4117d 100644
--- a/ace/Malloc_T.i
+++ b/ace/Malloc_T.i
@@ -11,14 +11,14 @@ ACE_Cached_Allocator<T, LOCK>::malloc (size_t nbytes)
return NULL;
// addr() call is really not absolutely necessary because of the way
- // ACE_Cached_Mem_Pool_Node_T's internal structure arranged.
+ // ACE_Cached_Mem_Pool_Node's internal structure arranged.
return this->free_list_.remove ()->addr ();
}
template <class T, class LOCK> void
ACE_Cached_Allocator<T, LOCK>::free (void * ptr)
{
- this->free_list_.add ((ACE_Cached_Mem_Pool_Node_T<T> *) ptr) ;
+ this->free_list_.add ((ACE_Cached_Mem_Pool_Node<T> *) ptr) ;
}
template <class MALLOC> ACE_INLINE void *