summaryrefslogtreecommitdiff
path: root/ace/Unbounded_Set.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Unbounded_Set.cpp')
-rw-r--r--ace/Unbounded_Set.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/ace/Unbounded_Set.cpp b/ace/Unbounded_Set.cpp
index 124c6223049..54ffa30a0f2 100644
--- a/ace/Unbounded_Set.cpp
+++ b/ace/Unbounded_Set.cpp
@@ -37,8 +37,7 @@ ACE_Unbounded_Set<T>::insert_tail (const T &item)
// Create a new dummy node.
ACE_NEW_MALLOC_RETURN (temp,
- ACE_static_cast(ACE_Node<T>*,
- this->allocator_->malloc (sizeof (ACE_Node<T>))),
+ static_cast<ACE_Node<T>*> (this->allocator_->malloc (sizeof (ACE_Node<T>))),
ACE_Node<T> (this->head_->next_),
-1);
// Link this pointer into the list.