Changeset 100417 in webkit for trunk/Source/JavaScriptCore/runtime/SymbolTable.h
- Timestamp:
- Nov 16, 2011, 12:05:40 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/SymbolTable.h
r76248 r100417 33 33 #include "UString.h" 34 34 #include <wtf/AlwaysInline.h> 35 #include <wtf/HashTraits.h> 35 36 36 37 namespace JSC { … … 113 114 }; 114 115 115 struct SymbolTableIndexHashTraits { 116 typedef SymbolTableEntry TraitType; 117 static SymbolTableEntry emptyValue() { return SymbolTableEntry(); } 116 struct SymbolTableIndexHashTraits : HashTraits<SymbolTableEntry> { 118 117 static const bool emptyValueIsZero = true; 119 118 static const bool needsDestruction = false;
Note:
See TracChangeset
for help on using the changeset viewer.