Changeset 160344 in webkit for trunk/Source/JavaScriptCore/runtime/JSString.h
- Timestamp:
- Dec 9, 2013, 5:28:05 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSString.h
r155711 r160344 23 23 #ifndef JSString_h 24 24 #define JSString_h 25 25 26 #include "CallFrame.h" 26 27 #include "CommonIdentifiers.h" … … 29 30 #include "PropertySlot.h" 30 31 #include "Structure.h" 32 #include <array> 31 33 32 34 namespace JSC { … … 323 325 JS_EXPORT_PRIVATE JSString* getIndexSlowCase(ExecState*, unsigned); 324 326 325 mutable FixedArray<WriteBarrier<JSString>, s_maxInternalRopeLength> m_fibers;327 mutable std::array<WriteBarrier<JSString>, s_maxInternalRopeLength> m_fibers; 326 328 }; 327 329
Note:
See TracChangeset
for help on using the changeset viewer.