Changeset 62367 in webkit for trunk/JavaScriptCore/runtime/NumericStrings.h
- Timestamp:
- Jul 1, 2010, 11:31:27 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/NumericStrings.h
r55599 r62367 28 28 29 29 #include "UString.h" 30 #include <wtf/FixedArray.h> 30 31 #include <wtf/HashFunctions.h> 31 32 … … 87 88 } 88 89 89 CacheEntry<double> doubleCache[cacheSize];90 CacheEntry<int> intCache[cacheSize];91 CacheEntry<unsigned> unsignedCache[cacheSize];92 UString smallIntCache[cacheSize];90 FixedArray<CacheEntry<double>, cacheSize> doubleCache; 91 FixedArray<CacheEntry<int>, cacheSize> intCache; 92 FixedArray<CacheEntry<unsigned>, cacheSize> unsignedCache; 93 FixedArray<UString, cacheSize> smallIntCache; 93 94 }; 94 95
Note:
See TracChangeset
for help on using the changeset viewer.