diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-12-18 01:59:36 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-12-18 01:59:36 +0000 |
commit | 8bae431e65a87447c8871d62fee7774280a7abb3 (patch) | |
tree | 5ddee84ffe53fd2b187cdcbb670dffe402114125 | |
parent | c96a7180da7343d3760a408c667ebf6921dd328c (diff) | |
download | ATCD-8bae431e65a87447c8871d62fee7774280a7abb3.tar.gz |
.
-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 359d8f480fe..a975f02fdd2 100644 --- a/ace/Malloc_T.cpp +++ b/ace/Malloc_T.cpp @@ -34,7 +34,7 @@ ACE_Cached_Allocator<T, ACE_LOCK>::ACE_Cached_Allocator (size_t n_chunks) template <class T, class ACE_LOCK> ACE_Cached_Allocator<T, ACE_LOCK>::~ACE_Cached_Allocator (void) { - char* tmp = (char*)this->pool_; + char* tmp = (char *) this->pool_; delete [] tmp; } |