Ignore:
Timestamp:
Apr 20, 2010, 1:33:56 PM (15 years ago)
Author:
[email protected]
Message:

JavaScriptCore: Add missing .def file entries.

Reviewed by NOBODY (windows build fix).

WebCore: Speculative tiger build fix.

Reviewed by NOBODY (build fix).

  • WebCore.NPAPI.exp:
  • WebCore.PluginHostProcess.exp:
  • WebCore.base.exp:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/JSString.cpp

    r57019 r57912  
    5252    else {
    5353        for (unsigned i = 0; i < m_fiberCount; ++i) {
    54             m_other.m_fibers[i]->deref();
     54            RopeImpl::deref(m_other.m_fibers[i]);
    5555            m_other.m_fibers[i] = 0;
    5656        }
     
    6363    UChar* position = buffer + m_length;
    6464
    65     // Start with the current Rope.
    66     Vector<Rope::Fiber, 32> workQueue;
    67     Rope::Fiber currentFiber;
     65    // Start with the current RopeImpl.
     66    Vector<RopeImpl::Fiber, 32> workQueue;
     67    RopeImpl::Fiber currentFiber;
    6868    for (unsigned i = 0; i < (m_fiberCount - 1); ++i)
    6969        workQueue.append(m_other.m_fibers[i]);
    7070    currentFiber = m_other.m_fibers[m_fiberCount - 1];
    7171    while (true) {
    72         if (currentFiber->isRope()) {
    73             Rope* rope = static_cast<URopeImpl*>(currentFiber);
     72        if (RopeImpl::isRope(currentFiber)) {
     73            RopeImpl* rope = static_cast<RopeImpl*>(currentFiber);
    7474            // Copy the contents of the current rope into the workQueue, with the last item in 'currentFiber'
    7575            // (we will be working backwards over the rope).
     
    8989                ASSERT(buffer == position);
    9090                for (unsigned i = 0; i < m_fiberCount; ++i) {
    91                     m_other.m_fibers[i]->deref();
     91                    RopeImpl::deref(m_other.m_fibers[i]);
    9292                    m_other.m_fibers[i] = 0;
    9393                }
Note: See TracChangeset for help on using the changeset viewer.