Title: [250815] trunk/Source/bmalloc
Revision
250815
Author
wenson_hs...@apple.com
Date
2019-10-07 21:56:31 -0700 (Mon, 07 Oct 2019)

Log Message

Add a missing #include in DeferredTriggerInlines.h
https://bugs.webkit.org/show_bug.cgi?id=202677

Reviewed by Yusuke Suzuki.

DeferredTriggerInlines.h uses RELEASE_BASSERT, but does not include BAssert.h. This causes
subsequent build failures when shuffling around some sources in WebCore that then attempt to
include <wtf/IsoMallocInlines.h>.

* bmalloc/DeferredTriggerInlines.h:

Modified Paths

Diff

Modified: trunk/Source/bmalloc/ChangeLog (250814 => 250815)


--- trunk/Source/bmalloc/ChangeLog	2019-10-08 04:50:03 UTC (rev 250814)
+++ trunk/Source/bmalloc/ChangeLog	2019-10-08 04:56:31 UTC (rev 250815)
@@ -1,3 +1,16 @@
+2019-10-07  Wenson Hsieh  <wenson_hs...@apple.com>
+
+        Add a missing #include in DeferredTriggerInlines.h
+        https://bugs.webkit.org/show_bug.cgi?id=202677
+
+        Reviewed by Yusuke Suzuki.
+
+        DeferredTriggerInlines.h uses RELEASE_BASSERT, but does not include BAssert.h. This causes
+        subsequent build failures when shuffling around some sources in WebCore that then attempt to
+        include <wtf/IsoMallocInlines.h>.
+
+        * bmalloc/DeferredTriggerInlines.h:
+
 2019-09-24  Keith Rollin  <krol...@apple.com>
 
         Address static analysis warning in Allocator.cpp: Null pointer argument in call to memory copy function

Modified: trunk/Source/bmalloc/bmalloc/DeferredTriggerInlines.h (250814 => 250815)


--- trunk/Source/bmalloc/bmalloc/DeferredTriggerInlines.h	2019-10-08 04:50:03 UTC (rev 250814)
+++ trunk/Source/bmalloc/bmalloc/DeferredTriggerInlines.h	2019-10-08 04:56:31 UTC (rev 250815)
@@ -25,6 +25,7 @@
 
 #pragma once
 
+#include "BAssert.h"
 #include "DeferredTrigger.h"
 
 namespace bmalloc {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to