diff options
Diffstat (limited to 'dep/acelite/ace/Unbounded_Set.h')
-rw-r--r-- | dep/acelite/ace/Unbounded_Set.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dep/acelite/ace/Unbounded_Set.h b/dep/acelite/ace/Unbounded_Set.h index a75eac18fc3..1655609517f 100644 --- a/dep/acelite/ace/Unbounded_Set.h +++ b/dep/acelite/ace/Unbounded_Set.h @@ -4,7 +4,7 @@ /** * @file Unbounded_Set.h * - * $Id: Unbounded_Set.h 81642 2008-05-07 19:30:35Z shuston $ + * $Id: Unbounded_Set.h 91743 2010-09-13 18:24:51Z johnnyw $ * * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ @@ -50,7 +50,7 @@ public: // = Initialization method. ACE_Unbounded_Set_Iterator (ACE_Unbounded_Set<T> &s, bool end = false); - + ACE_Unbounded_Set_Iterator (const base_type &s); }; @@ -63,13 +63,13 @@ class ACE_Unbounded_Set_Const_Iterator : public ACE_Unbounded_Set_Ex_Const_Iterator<T, ACE_Unbounded_Set_Default_Comparator<T> > { public: - + typedef ACE_Unbounded_Set_Ex_Const_Iterator<T, ACE_Unbounded_Set_Default_Comparator<T> > base_type; - + // = Initialization method. ACE_Unbounded_Set_Const_Iterator (const ACE_Unbounded_Set<T> &s, bool end = false); - + ACE_Unbounded_Set_Const_Iterator (const base_type &s); }; |