Title: [217827] trunk/Source/bmalloc
Revision
217827
Author
gga...@apple.com
Date
2017-06-06 07:39:51 -0700 (Tue, 06 Jun 2017)

Log Message

Try to fix the GTK build.

Unreviewed.

* bmalloc/List.h:
(bmalloc::List::List):

Modified Paths

Diff

Modified: trunk/Source/bmalloc/ChangeLog (217826 => 217827)


--- trunk/Source/bmalloc/ChangeLog	2017-06-06 14:30:47 UTC (rev 217826)
+++ trunk/Source/bmalloc/ChangeLog	2017-06-06 14:39:51 UTC (rev 217827)
@@ -1,3 +1,12 @@
+2017-06-06  Geoffrey Garen  <gga...@apple.com>
+
+        Try to fix the GTK build.
+
+        Unreviewed.
+
+        * bmalloc/List.h:
+        (bmalloc::List::List):
+
 2017-06-05  Geoffrey Garen  <gga...@apple.com>
 
         Try to fix the GTK build.

Modified: trunk/Source/bmalloc/bmalloc/List.h (217826 => 217827)


--- trunk/Source/bmalloc/bmalloc/List.h	2017-06-06 14:30:47 UTC (rev 217826)
+++ trunk/Source/bmalloc/bmalloc/List.h	2017-06-06 14:39:51 UTC (rev 217827)
@@ -54,6 +54,8 @@
     };
 
 public:
+    List() { }
+
     bool isEmpty() { return m_root.next == &m_root; }
 
     T* head() { return static_cast<T*>(m_root.next); }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to