Changeset 12127 in webkit for trunk/JavaScriptCore/kxmlcore/HashMapPtrSpec.h
- Timestamp:
- Jan 16, 2006, 12:49:46 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kxmlcore/HashMapPtrSpec.h
r11962 r12127 102 102 PointerType operator->() const { return &(operator*()); } 103 103 104 iterator& operator++()104 const_iterator& operator++() 105 105 { 106 106 ++m_impl; … … 111 111 112 112 // Comparison. 113 bool operator==(const iterator& other) const113 bool operator==(const const_iterator& other) const 114 114 { 115 115 return m_impl == other.m_impl; 116 116 } 117 117 118 bool operator!=(const iterator& other) const118 bool operator!=(const const_iterator& other) const 119 119 { 120 120 return m_impl != other.m_impl;
Note:
See TracChangeset
for help on using the changeset viewer.