Changeset 63578 in webkit for trunk/JavaScriptCore/runtime/RegExpKey.h
- Timestamp:
- Jul 16, 2010, 1:47:46 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/RegExpKey.h
r61623 r63578 77 77 } 78 78 }; 79 } // namespace JSC80 79 81 namespace WTF { 82 template<typename T> struct DefaultHash; 83 template<typename T> struct RegExpHash; 84 85 inline bool operator==(const JSC::RegExpKey& a, const JSC::RegExpKey& b) 80 inline bool operator==(const RegExpKey& a, const RegExpKey& b) 86 81 { 87 82 if (a.flagsValue != b.flagsValue) … … 93 88 return equal(a.pattern.get(), b.pattern.get()); 94 89 } 90 91 } // namespace JSC 92 93 namespace WTF { 94 template<typename T> struct DefaultHash; 95 template<typename T> struct RegExpHash; 95 96 96 97 template<> struct RegExpHash<JSC::RegExpKey> {
Note:
See TracChangeset
for help on using the changeset viewer.