diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-26 23:00:06 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-26 23:00:06 +0000 |
commit | f02b4cac53227b202e0942497afb2eae985b7bcd (patch) | |
tree | 9dc1afe72199d0fc337aaf842dd76b979290fb89 /ace/Malloc_T.cpp | |
parent | dd089276cea4870aca49da14f816ba24042f039e (diff) | |
download | ATCD-f02b4cac53227b202e0942497afb2eae985b7bcd.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 b5dea5a7501..cf70f09362e 100644 --- a/ace/Malloc_T.cpp +++ b/ace/Malloc_T.cpp @@ -16,7 +16,7 @@ ACE_Cached_Allocator<T, LOCK>::ACE_Cached_Allocator (size_t n_chunks) : pool_ (0), free_list_ (ACE_PURE_FREE_LIST) { - this->pool_ = (T *) new char[n_chunks * sizeof (T)]; + this->pool_ = (T*) new char[n_chunks * sizeof (T)]; // ERRNO could be lost because this is within ctor for (size_t c = 0 ; c < n_chunks ; c++) |