Ignore:
Timestamp:
Jan 31, 2011, 2:24:27 PM (14 years ago)
Author:
[email protected]
Message:

Rolling back in the changes for https://bugs.webkit.org/show_bug.cgi?id=53271.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/WeakGCMap.h

    r77151 r77159  
    7777    const_iterator uncheckedEnd() const { return m_map.end(); }
    7878
     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
    7982private:
    8083    HashMap<KeyType, DeprecatedPtr<MappedType> > m_map;
Note: See TracChangeset for help on using the changeset viewer.