Ignore:
Timestamp:
Oct 17, 2011, 1:51:18 PM (14 years ago)
Author:
[email protected]
Message:

Windows build fix.

longer existant symbol.

  • heap/MarkStack.cpp:

(JSC::MarkStackArray::shrinkAllocation): Cast to the right type.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/heap/MarkStack.cpp

    r97642 r97644  
    7272    // we'll release the entire region and reallocate the size that we want.
    7373    MarkStack::releaseStack(m_data, m_allocated);
    74     m_data = static_cast<JSCell*>(MarkStack::allocateStack(size));
     74    m_data = static_cast<const JSCell**>(MarkStack::allocateStack(size));
    7575#else
    7676    MarkStack::releaseStack(reinterpret_cast<char*>(m_data) + size, m_allocated - size);
Note: See TracChangeset for help on using the changeset viewer.