Changeset 180806 in webkit


Ignore:
Timestamp:
Feb 27, 2015, 5:52:48 PM (10 years ago)
Author:
rniwa@webkit.org
Message:

Fixed a typo in the previous commit.

  • bmalloc/BoundaryTag.h:

(bmalloc::BoundaryTag::setOwner):

Location:
trunk/Source/bmalloc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/bmalloc/ChangeLog

    r180805 r180806  
     12015-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
    182015-02-27  Ryosuke Niwa  <rniwa@webkit.org>
    29
  • trunk/Source/bmalloc/bmalloc/BoundaryTag.h

    r180805 r180806  
    5252
    5353    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); }
    5555   
    5656    bool isMarked() { return m_isMarked; }
Note: See TracChangeset for help on using the changeset viewer.