summaryrefslogtreecommitdiff
path: root/ace/Containers.cpp
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-05-06 12:43:11 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-05-06 12:43:11 +0000
commit390a2a605b25d011eb11f0b108889544ac0cdccd (patch)
tree3699869e7d6ac977d838c3e458f23473cf3bffdc /ace/Containers.cpp
parent4aa3ab392953e37d91870983ffb278f40d23be52 (diff)
downloadATCD-390a2a605b25d011eb11f0b108889544ac0cdccd.tar.gz
(dequeue_head): fixed typos in variable names.
Diffstat (limited to 'ace/Containers.cpp')
-rw-r--r--ace/Containers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Containers.cpp b/ace/Containers.cpp
index 5a927228a88..b8dce3c7546 100644
--- a/ace/Containers.cpp
+++ b/ace/Containers.cpp
@@ -391,7 +391,7 @@ ACE_Unbounded_Queue<T>::dequeue_head (T &item)
ACE_Node<T> *temp = this->head_->next_;
item = temp->item_;
- this->head_->next = temp_->next_;
+ this->head_->next_ = temp->next_;
delete temp;
--this->cur_size_;
return 0;