summaryrefslogtreecommitdiff
path: root/ace/Timer_List_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Timer_List_T.cpp')
-rw-r--r--ace/Timer_List_T.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/ace/Timer_List_T.cpp b/ace/Timer_List_T.cpp
index 443bd024362..dc0d6c5cc26 100644
--- a/ace/Timer_List_T.cpp
+++ b/ace/Timer_List_T.cpp
@@ -10,14 +10,13 @@
// Default Constructor
template <class TYPE, class FUNCTOR, class LOCK>
-ACE_Timer_List_Iterator_T<TYPE, FUNCTOR, LOCK>::ACE_Timer_List_Iterator_T (ACE_Timer_List_T<TYPE, FUNCTOR, LOCK> &listParm)
- : timer_list_ (listParm),
+ACE_Timer_List_Iterator_T<TYPE, FUNCTOR, LOCK>::ACE_Timer_List_Iterator_T (ACE_Timer_List_T<TYPE, FUNCTOR, LOCK> &list)
+ : timer_list_ (list),
position_ (NULL)
{
// Nothing
}
-
// Positions the iterator at the node right after the dummy node
template <class TYPE, class FUNCTOR, class LOCK> void
@@ -26,7 +25,6 @@ ACE_Timer_List_Iterator_T<TYPE, FUNCTOR, LOCK>::first (void)
this->position_ = this->timer_list_.head_->get_next ();
}
-
// Positions the iterator at the next node in the Timer Queue
template <class TYPE, class FUNCTOR, class LOCK> void
@@ -37,7 +35,6 @@ ACE_Timer_List_Iterator_T<TYPE, FUNCTOR, LOCK>::next (void)
this->position_ = this->position_->get_next ();
}
-
// Returns true when we are at <head_>
template <class TYPE, class FUNCTOR, class LOCK> int
@@ -46,7 +43,6 @@ ACE_Timer_List_Iterator_T<TYPE, FUNCTOR, LOCK>::isdone (void)
return this->position_ == this->timer_list_.head_;
}
-
// Returns the node at <position_> or NULL if we are at the end
template <class TYPE, class FUNCTOR, class LOCK> ACE_Timer_Node_T<TYPE> *
@@ -57,7 +53,6 @@ ACE_Timer_List_Iterator_T<TYPE, FUNCTOR, LOCK>::item (void)
return NULL;
}
-
// Return our instance of the iterator
template <class TYPE, class FUNCTOR, class LOCK> ACE_Timer_Queue_Iterator_T<TYPE, FUNCTOR, LOCK> &
@@ -66,7 +61,6 @@ ACE_Timer_List_T<TYPE, FUNCTOR, LOCK>::iter (void)
return this->iterator_;
}
-
// Create an empty list.
template <class TYPE, class FUNCTOR, class LOCK>