Changeset 12511 in webkit for trunk/JavaScriptCore/kxmlcore/HashTable.h
- Timestamp:
- Jan 31, 2006, 8:33:27 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kxmlcore/HashTable.h
r12328 r12511 111 111 } 112 112 113 HashTableConstIterator(const iterator& other)114 : m_position(other.m_position), m_endPosition(other.m_endPosition)115 {116 #if CHECK_HASHTABLE_ITERATORS117 addIterator(other.m_table, this);118 #endif119 }120 121 113 // default copy, assignment and destructor are OK if CHECK_HASHTABLE_ITERATORS is 0 122 114 … … 232 224 bool operator==(const iterator& other) const { return m_iterator == other.m_iterator; } 233 225 bool operator!=(const iterator& other) const { return m_iterator != other.m_iterator; } 226 227 operator const_iterator() const { return m_iterator; } 234 228 235 229 private:
Note:
See TracChangeset
for help on using the changeset viewer.