Title: [179365] trunk/Source/_javascript_Core
Revision
179365
Author
[email protected]
Date
2015-01-29 13:58:19 -0800 (Thu, 29 Jan 2015)

Log Message

2015-01-29  Geoffrey Garen  <[email protected]>

        Try to fix the Windows build.

        Not reviewed.

        * heap/WeakBlock.h: Use the fully qualified name when declaring our friend.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (179364 => 179365)


--- trunk/Source/_javascript_Core/ChangeLog	2015-01-29 21:57:04 UTC (rev 179364)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-01-29 21:58:19 UTC (rev 179365)
@@ -1,5 +1,13 @@
 2015-01-29  Geoffrey Garen  <[email protected]>
 
+        Try to fix the Windows build.
+
+        Not reviewed.
+
+        * heap/WeakBlock.h: Use the fully qualified name when declaring our friend.
+
+2015-01-29  Geoffrey Garen  <[email protected]>
+
         Use FastMalloc (bmalloc) instead of BlockAllocator for GC pages
         https://bugs.webkit.org/show_bug.cgi?id=140900
 

Modified: trunk/Source/_javascript_Core/heap/WeakBlock.h (179364 => 179365)


--- trunk/Source/_javascript_Core/heap/WeakBlock.h	2015-01-29 21:57:04 UTC (rev 179364)
+++ trunk/Source/_javascript_Core/heap/WeakBlock.h	2015-01-29 21:58:19 UTC (rev 179365)
@@ -40,7 +40,7 @@
 
 class WeakBlock : public DoublyLinkedListNode<WeakBlock> {
 public:
-    friend class DoublyLinkedListNode<WeakBlock>;
+    friend class WTF::DoublyLinkedListNode<WeakBlock>;
     static const size_t blockSize = 4 * KB; // 5% of MarkedBlock size
 
     struct FreeCell {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to