Changeset 77111 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Jan 30, 2011, 10:05:55 PM (14 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r77109 r77111 1 2011-01-30 Simon Fraser <[email protected]> 2 3 Build fix the build fix. I assume Oliver meant m_cell, not m_value. 4 5 * runtime/WriteBarrier.h: 6 (JSC::WriteBarrierBase::clear): 7 1 8 2011-01-30 Oliver Hunt <[email protected]> 2 9 -
trunk/Source/JavaScriptCore/runtime/WriteBarrier.h
r77109 r77111 89 89 T* operator*() const { return static_cast<T*>(m_cell); } 90 90 T* operator->() const { return static_cast<T*>(m_cell); } 91 void clear() { m_ value= 0; }91 void clear() { m_cell = 0; } 92 92 93 93 JSCell** slot() { return &m_cell; }
Note:
See TracChangeset
for help on using the changeset viewer.