Changeset 32449 in webkit for trunk/JavaScriptCore/kjs/SymbolTable.h
- Timestamp:
- Apr 23, 2008, 2:41:10 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/SymbolTable.h
r29663 r32449 1 1 /* 2 * Copyright (C) 2007 Apple Inc. All rights reserved.2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 53 53 static ALWAYS_INLINE size_t missingSymbolMarker() { return std::numeric_limits<size_t>::max(); } 54 54 55 struct SymbolTableIndexHashTraits { 56 typedef size_t TraitType; 57 typedef SymbolTableIndexHashTraits StorageTraits; 55 struct SymbolTableIndexHashTraits : HashTraits<size_t> { 58 56 static size_t emptyValue() { return missingSymbolMarker(); } 59 static const bool emptyValueIsZero = false;60 static const bool needsDestruction = false;61 static const bool needsRef = false;62 57 }; 63 58
Note:
See TracChangeset
for help on using the changeset viewer.