X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/2d39b0e377c0896910ee49ae70082ba665faf986..HEAD:/heap/CodeBlockSet.h diff --git a/heap/CodeBlockSet.h b/heap/CodeBlockSet.h index e00cefe..6cab875 100644 --- a/heap/CodeBlockSet.h +++ b/heap/CodeBlockSet.h @@ -36,7 +36,6 @@ namespace JSC { -class BlockAllocator; class CodeBlock; class Heap; class JSCell; @@ -50,7 +49,7 @@ class CodeBlockSet { WTF_MAKE_NONCOPYABLE(CodeBlockSet); public: - CodeBlockSet(BlockAllocator&); + CodeBlockSet(); ~CodeBlockSet(); // Add a CodeBlock. This is only called by CodeBlock constructors. @@ -110,7 +109,7 @@ private: // and all, but that seemed like overkill. HashSet m_oldCodeBlocks; HashSet m_newCodeBlocks; - GCSegmentedArray m_currentlyExecuting; + Vector m_currentlyExecuting; }; } // namespace JSC