Changeset 77125 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Jan 31, 2011, 6:26:50 AM (14 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r77113 r77125 1 2011-01-31 Sheriff Bot <[email protected]> 2 3 Unreviewed, rolling out r76969. 4 http://trac.webkit.org/changeset/76969 5 https://bugs.webkit.org/show_bug.cgi?id=53418 6 7 "It is causing crashes in GTK+ and Leopard bots" (Requested by 8 alexg__ on #webkit). 9 10 * runtime/WeakGCMap.h: 11 1 12 2011-01-30 Csaba Osztrogonác <[email protected]> 2 13 -
trunk/Source/JavaScriptCore/runtime/WeakGCMap.h
r77113 r77125 70 70 const_iterator uncheckedEnd() const { return m_map.end(); } 71 71 72 bool isValid(iterator it) const { return Heap::isCellMarked(it->second); }73 bool isValid(const_iterator it) const { return Heap::isCellMarked(it->second); }74 75 72 private: 76 73 HashMap<KeyType, MappedType> m_map;
Note:
See TracChangeset
for help on using the changeset viewer.