⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 184051 in webkit


Ignore:
Timestamp:
May 10, 2015, 1:19:11 PM (11 years ago)
Author:
akling@apple.com
Message:

Remove unnecessary AtomicStringImpl* hash specification in PropertyNameArray.

Follow up to r184050 suggested by Darin.

  • runtime/PropertyNameArray.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r184050 r184051  
     12015-05-10  Andreas Kling  <akling@apple.com>
     2
     3        Remove unnecessary AtomicStringImpl* hash specification in PropertyNameArray.
     4
     5        Follow up to r184050 suggested by Darin.
     6
     7        * runtime/PropertyNameArray.h:
     8
    192015-05-10  Andreas Kling  <akling@apple.com>
    210
  • trunk/Source/JavaScriptCore/runtime/PropertyNameArray.h

    r184050 r184051  
    9595private:
    9696    RefPtr<PropertyNameArrayData> m_data;
    97     HashSet<AtomicStringImpl*, PtrHash<AtomicStringImpl*>> m_set;
     97    HashSet<AtomicStringImpl*> m_set;
    9898    VM* m_vm;
    9999};
Note: See TracChangeset for help on using the changeset viewer.