Changeset 180806 in webkit
- Timestamp:
- Feb 27, 2015, 5:52:48 PM (10 years ago)
- Location:
- trunk/Source/bmalloc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/bmalloc/ChangeLog
r180805 r180806 1 2015-02-27 Ryosuke Niwa <rniwa@webkit.org> 2 3 Fixed a typo in the previous commit. 4 5 * bmalloc/BoundaryTag.h: 6 (bmalloc::BoundaryTag::setOwner): 7 1 8 2015-02-27 Ryosuke Niwa <rniwa@webkit.org> 2 9 -
trunk/Source/bmalloc/bmalloc/BoundaryTag.h
r180805 r180806 52 52 53 53 Owner owner() { return m_ownerIsHeap ? Owner::Heap : Owner::VMHeap; } 54 void setOwner(Owner owner) { m_ownerIsHeap = (owner == Owner:: VMHeap); }54 void setOwner(Owner owner) { m_ownerIsHeap = (owner == Owner::Heap); } 55 55 56 56 bool isMarked() { return m_isMarked; }
Note:
See TracChangeset
for help on using the changeset viewer.