diff options
Diffstat (limited to 'ace/Unbounded_Set.cpp')
-rw-r--r-- | ace/Unbounded_Set.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Unbounded_Set.cpp b/ace/Unbounded_Set.cpp index 3ec5d679602..948144cbc06 100644 --- a/ace/Unbounded_Set.cpp +++ b/ace/Unbounded_Set.cpp @@ -341,14 +341,14 @@ ACE_Unbounded_Set_Iterator<T>::operator* (void) return *retv; } -template <class T> int +template <class T> bool ACE_Unbounded_Set_Iterator<T>::operator== (const ACE_Unbounded_Set_Iterator<T> &rhs) const { //ACE_TRACE ("ACE_Unbounded_Set_Iterator<T>::operator=="); return (this->set_ == rhs.set_ && this->current_ == rhs.current_); } -template <class T> int +template <class T> bool ACE_Unbounded_Set_Iterator<T>::operator!= (const ACE_Unbounded_Set_Iterator<T> &rhs) const { //ACE_TRACE ("ACE_Unbounded_Set_Iterator<T>::operator!="); |