Title: [124266] trunk/Source/_javascript_Core
Revision
124266
Author
gga...@apple.com
Date
2012-07-31 16:07:46 -0700 (Tue, 31 Jul 2012)

Log Message

Maybe break the Windows build.

Reviewed by Anders Carlsson.

Formally objected to by Sam Weinig.

* heap/HeapBlock.h:
(HeapBlock): Try to slightly improve this because we don't want Windows to control our lives.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (124265 => 124266)


--- trunk/Source/_javascript_Core/ChangeLog	2012-07-31 23:05:12 UTC (rev 124265)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-07-31 23:07:46 UTC (rev 124266)
@@ -1,3 +1,14 @@
+2012-07-31  Geoffrey Garen  <gga...@apple.com>
+
+        Maybe break the Windows build.
+
+        Reviewed by Anders Carlsson.
+
+        Formally objected to by Sam Weinig.
+
+        * heap/HeapBlock.h:
+        (HeapBlock): Try to slightly improve this because we don't want Windows to control our lives.
+
 2012-07-30  Mark Hahnenberg  <mhahnenb...@apple.com>
 
         Structures should be swept after all other objects

Modified: trunk/Source/_javascript_Core/heap/HeapBlock.h (124265 => 124266)


--- trunk/Source/_javascript_Core/heap/HeapBlock.h	2012-07-31 23:05:12 UTC (rev 124265)
+++ trunk/Source/_javascript_Core/heap/HeapBlock.h	2012-07-31 23:07:46 UTC (rev 124266)
@@ -36,8 +36,7 @@
 
 template<typename T>
 class HeapBlock : public DoublyLinkedListNode<T> {
-    typedef DoublyLinkedListNode<T> Base;
-    friend Base;
+    friend DoublyLinkedListNode<T>;
 public:
     static const size_t s_blockSize = 64 * KB;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to