Changeset 77111 in webkit for trunk/Source/JavaScriptCore/runtime


Ignore:
Timestamp:
Jan 30, 2011, 10:05:55 PM (14 years ago)
Author:
Simon Fraser
Message:

2011-01-30 Simon Fraser <Simon Fraser>

Build fix the build fix. I assume Oliver meant m_cell, not m_value.

  • runtime/WriteBarrier.h: (JSC::WriteBarrierBase::clear):
File:
1 edited

Legend:

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

    r77109 r77111  
    8989    T* operator*() const { return static_cast<T*>(m_cell); }
    9090    T* operator->() const { return static_cast<T*>(m_cell); }
    91     void clear() { m_value = 0; }
     91    void clear() { m_cell = 0; }
    9292   
    9393    JSCell** slot() { return &m_cell; }
Note: See TracChangeset for help on using the changeset viewer.