Changeset 152225 in webkit


Ignore:
Timestamp:
Jul 1, 2013 8:39:00 AM (11 years ago)
Author:
Csaba Osztrogonác
Message:

Fix cast-align warnings in JavaScriptCore/heap/HandleBlockInlines.h
https://bugs.webkit.org/show_bug.cgi?id=118242

Reviewed by Mark Hahnenberg.

  • heap/HandleBlockInlines.h:

(JSC::HandleBlock::nodes):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r152209 r152225  
     12013-07-01  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Fix cast-align warnings in JavaScriptCore/heap/HandleBlockInlines.h
     4        https://bugs.webkit.org/show_bug.cgi?id=118242
     5
     6        Reviewed by Mark Hahnenberg.
     7
     8        * heap/HandleBlockInlines.h:
     9        (JSC::HandleBlock::nodes):
     10
    1112013-06-29  Andreas Kling  <akling@apple.com>
    212
  • trunk/Source/JavaScriptCore/heap/HandleBlockInlines.h

    r146734 r152225  
    5656inline HandleNode* HandleBlock::nodes()
    5757{
    58     return reinterpret_cast<HandleNode*>(payload());
     58    return reinterpret_cast_ptr<HandleNode*>(payload());
    5959}
    6060
Note: See TracChangeset for help on using the changeset viewer.