summaryrefslogtreecommitdiff
path: root/ace/Containers.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-08-30 19:32:42 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-08-30 19:32:42 +0000
commit6a4d079a1330b91c50af8909ddd673f65e667fec (patch)
treea5f7df2c92c6559d1d97ae740e6ec283553fceaa /ace/Containers.cpp
parent318ea665ab5316e3d40ba4a6aca7715f174ff072 (diff)
downloadATCD-6a4d079a1330b91c50af8909ddd673f65e667fec.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Containers.cpp')
-rw-r--r--ace/Containers.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/ace/Containers.cpp b/ace/Containers.cpp
index 73f04908d68..040a6c53b87 100644
--- a/ace/Containers.cpp
+++ b/ace/Containers.cpp
@@ -410,7 +410,8 @@ ACE_Unbounded_Queue<T>::delete_nodes (void)
ACE_Node<T> *temp = curr;
curr = curr->next_;
- ACE_DES_FREE_TEMPLATE (temp, this->allocator_->free,
+ ACE_DES_FREE_TEMPLATE (temp,
+ this->allocator_->free,
ACE_Node, <T>);
this->cur_size_--;
}