Title: [124261] trunk/Source/_javascript_Core
- Revision
- 124261
- Author
- [email protected]
- Date
- 2012-07-31 15:59:49 -0700 (Tue, 31 Jul 2012)
Log Message
Maybe fix the Windows build.
* heap/HeapBlock.h:
(HeapBlock): WTF?
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (124260 => 124261)
--- trunk/Source/_javascript_Core/ChangeLog 2012-07-31 22:55:18 UTC (rev 124260)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-07-31 22:59:49 UTC (rev 124261)
@@ -7,6 +7,13 @@
2012-07-31 Geoffrey Garen <[email protected]>
+ Maybe fix the Windows build.
+
+ * heap/HeapBlock.h:
+ (HeapBlock): WTF?
+
+2012-07-31 Geoffrey Garen <[email protected]>
+
Removed some public data and casting from the Heap
https://bugs.webkit.org/show_bug.cgi?id=92777
Modified: trunk/Source/_javascript_Core/heap/HeapBlock.h (124260 => 124261)
--- trunk/Source/_javascript_Core/heap/HeapBlock.h 2012-07-31 22:55:18 UTC (rev 124260)
+++ trunk/Source/_javascript_Core/heap/HeapBlock.h 2012-07-31 22:59:49 UTC (rev 124261)
@@ -36,7 +36,8 @@
template<typename T>
class HeapBlock : public DoublyLinkedListNode<T> {
- friend class WTF::DoublyLinkedListNode<T>;
+ typedef DoublyLinkedListNode<T> Base;
+ friend class Base;
public:
static const size_t s_blockSize = 64 * KB;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes