Ignore:
Timestamp:
Dec 9, 2013, 5:28:05 PM (11 years ago)
Author:
[email protected]
Message:

Replace use of WTF::FixedArray with std::array
https://bugs.webkit.org/show_bug.cgi?id=125475

Reviewed by Anders Carlsson.

../JavaScriptCore:

  • bytecode/CodeBlockHash.cpp:

(JSC::CodeBlockHash::dump):

  • bytecode/Opcode.cpp:

(JSC::OpcodeStats::~OpcodeStats):

  • dfg/DFGCSEPhase.cpp:
  • ftl/FTLAbstractHeap.h:
  • heap/MarkedSpace.h:
  • parser/ParserArena.h:
  • runtime/CodeCache.h:
  • runtime/DateInstanceCache.h:
  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::reset):

  • runtime/JSGlobalObject.h:
  • runtime/JSString.h:
  • runtime/LiteralParser.h:
  • runtime/NumericStrings.h:
  • runtime/RegExpCache.h:
  • runtime/SmallStrings.h:

../WebCore:

  • crypto/parameters/CryptoAlgorithmAesCbcParams.h:
  • platform/graphics/GlyphMetricsMap.h:

../WTF:

  • wtf/AVLTree.h:
  • wtf/Bitmap.h:
  • wtf/SixCharacterHash.cpp:

(WTF::integerToSixCharacterHashString):

  • wtf/SixCharacterHash.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/JSString.h

    r155711 r160344  
    2323#ifndef JSString_h
    2424#define JSString_h
     25
    2526#include "CallFrame.h"
    2627#include "CommonIdentifiers.h"
     
    2930#include "PropertySlot.h"
    3031#include "Structure.h"
     32#include <array>
    3133
    3234namespace JSC {
     
    323325        JS_EXPORT_PRIVATE JSString* getIndexSlowCase(ExecState*, unsigned);
    324326
    325         mutable FixedArray<WriteBarrier<JSString>, s_maxInternalRopeLength> m_fibers;
     327        mutable std::array<WriteBarrier<JSString>, s_maxInternalRopeLength> m_fibers;
    326328    };
    327329
Note: See TracChangeset for help on using the changeset viewer.