diff options
author | gonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-07-10 06:44:29 +0000 |
---|---|---|
committer | gonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-07-10 06:44:29 +0000 |
commit | d25aaed7a7b4dbcd189a9b567c0f65023bdee922 (patch) | |
tree | 7ab6c778040ca5405622de6be426f45f08f4de24 /ace/Containers.cpp | |
parent | 36882357be85f74c0566c4783f805c4753cb411a (diff) | |
download | ATCD-d25aaed7a7b4dbcd189a9b567c0f65023bdee922.tar.gz |
Support for Borland C++ 5.x as DLL
Diffstat (limited to 'ace/Containers.cpp')
-rw-r--r-- | ace/Containers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Containers.cpp b/ace/Containers.cpp index 19d566b4f37..43358d8b5cf 100644 --- a/ace/Containers.cpp +++ b/ace/Containers.cpp @@ -228,7 +228,7 @@ ACE_Unbounded_Stack<T>::push (const T &new_item) { // ACE_TRACE ("ACE_Unbounded_Stack<T>::push"); - ACE_Node<T> *temp = 0; + ACE_Node<T> *temp; ACE_NEW_MALLOC_RETURN (temp, (ACE_Node<T>*) this->allocator_->malloc (sizeof (ACE_Node<T>)), |