summaryrefslogtreecommitdiff
path: root/ace
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
commitc59032ba111e3ef911ff984b7d4506279a9e9c8c (patch)
tree3699869e7d6ac977d838c3e458f23473cf3bffdc /ace
parenta52153f33a1d18e8c0c14e77ba0a1b5e097e629c (diff)
downloadATCD-c59032ba111e3ef911ff984b7d4506279a9e9c8c.tar.gz
(dequeue_head): fixed typos in variable names.
Diffstat (limited to 'ace')
-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;