Title: [152225] trunk/Source/_javascript_Core
Revision
152225
Author
[email protected]
Date
2013-07-01 08:39:00 -0700 (Mon, 01 Jul 2013)

Log Message

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

Reviewed by Mark Hahnenberg.

* heap/HandleBlockInlines.h:
(JSC::HandleBlock::nodes):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (152224 => 152225)


--- trunk/Source/_javascript_Core/ChangeLog	2013-07-01 15:29:02 UTC (rev 152224)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-07-01 15:39:00 UTC (rev 152225)
@@ -1,3 +1,13 @@
+2013-07-01  Csaba Osztrogonác  <[email protected]>
+
+        Fix cast-align warnings in _javascript_Core/heap/HandleBlockInlines.h
+        https://bugs.webkit.org/show_bug.cgi?id=118242
+
+        Reviewed by Mark Hahnenberg.
+
+        * heap/HandleBlockInlines.h:
+        (JSC::HandleBlock::nodes):
+
 2013-06-29  Andreas Kling  <[email protected]>
 
         Follow-up to r152206: also update HashFlags8BitBuffer in the LLInt.

Modified: trunk/Source/_javascript_Core/heap/HandleBlockInlines.h (152224 => 152225)


--- trunk/Source/_javascript_Core/heap/HandleBlockInlines.h	2013-07-01 15:29:02 UTC (rev 152224)
+++ trunk/Source/_javascript_Core/heap/HandleBlockInlines.h	2013-07-01 15:39:00 UTC (rev 152225)
@@ -55,7 +55,7 @@
 
 inline HandleNode* HandleBlock::nodes()
 {
-    return reinterpret_cast<HandleNode*>(payload());
+    return reinterpret_cast_ptr<HandleNode*>(payload());
 }
 
 inline HandleNode* HandleBlock::nodeAtIndex(unsigned i)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to