summaryrefslogtreecommitdiff
path: root/ACE/ace/Malloc_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Malloc_T.cpp')
-rw-r--r--ACE/ace/Malloc_T.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Malloc_T.cpp b/ACE/ace/Malloc_T.cpp
index 1c6e12db4d1..a09505e6f38 100644
--- a/ACE/ace/Malloc_T.cpp
+++ b/ACE/ace/Malloc_T.cpp
@@ -50,7 +50,7 @@ ACE_Cached_Allocator<T, ACE_LOCK>::ACE_Cached_Allocator (size_t n_chunks)
void* placement = this->pool_ + c * chunk_size;
this->free_list_.add (new (placement) ACE_Cached_Mem_Pool_Node<T>);
}
- // Put into free list using placement contructor, no real memory
+ // Put into free list using placement constructor, no real memory
// allocation in the above <new>.
}
@@ -128,7 +128,7 @@ ACE_Dynamic_Cached_Allocator<ACE_LOCK>::ACE_Dynamic_Cached_Allocator
this->free_list_.add (new (placement) ACE_Cached_Mem_Pool_Node<char>);
}
- // Put into free list using placement contructor, no real memory
+ // Put into free list using placement constructor, no real memory
// allocation in the above <new>.
}