summaryrefslogtreecommitdiff
path: root/ace/Containers.cpp
diff options
context:
space:
mode:
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_--;
}