Changeset 77159 in webkit for trunk/Source/JavaScriptCore/runtime/WeakGCMap.h
- Timestamp:
- Jan 31, 2011, 2:24:27 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/WeakGCMap.h
r77151 r77159 77 77 const_iterator uncheckedEnd() const { return m_map.end(); } 78 78 79 bool isValid(iterator it) const { return Heap::isCellMarked(it->second.get()); } 80 bool isValid(const_iterator it) const { return Heap::isCellMarked(it->second.get()); } 81 79 82 private: 80 83 HashMap<KeyType, DeprecatedPtr<MappedType> > m_map;
Note:
See TracChangeset
for help on using the changeset viewer.