Title: [254825] trunk/Source/WebCore
Revision
254825
Author
[email protected]
Date
2020-01-20 07:43:09 -0800 (Mon, 20 Jan 2020)

Log Message

Invalid usage of ENABLE() before it's defined in WebCore/layout/integration/LayoutIntegrationBoxTree.cpp
https://bugs.webkit.org/show_bug.cgi?id=206500

Reviewed by Žan Doberšek.

No new tests needed.

* layout/integration/LayoutIntegrationBoxTree.cpp: Include "config.h"
before using the ENABLE() macro, to make sure that it gets defined.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (254824 => 254825)


--- trunk/Source/WebCore/ChangeLog	2020-01-20 15:20:52 UTC (rev 254824)
+++ trunk/Source/WebCore/ChangeLog	2020-01-20 15:43:09 UTC (rev 254825)
@@ -1,3 +1,15 @@
+2020-01-20  Adrian Perez de Castro  <[email protected]>
+
+        Invalid usage of ENABLE() before it's defined in WebCore/layout/integration/LayoutIntegrationBoxTree.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=206500
+
+        Reviewed by Žan Doberšek.
+
+        No new tests needed.
+
+        * layout/integration/LayoutIntegrationBoxTree.cpp: Include "config.h"
+        before using the ENABLE() macro, to make sure that it gets defined.
+
 2020-01-20  youenn fablet  <[email protected]>
 
         REGRESSION: ( r254256 ) [ Mojave wk2 ] http/wpt/mediarecorder/MediaRecorder-AV-audio-video-dataavailable-gpuprocess.html is a flaky failure

Modified: trunk/Source/WebCore/layout/integration/LayoutIntegrationBoxTree.cpp (254824 => 254825)


--- trunk/Source/WebCore/layout/integration/LayoutIntegrationBoxTree.cpp	2020-01-20 15:20:52 UTC (rev 254824)
+++ trunk/Source/WebCore/layout/integration/LayoutIntegrationBoxTree.cpp	2020-01-20 15:43:09 UTC (rev 254825)
@@ -23,11 +23,11 @@
  * THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#if ENABLE(LAYOUT_FORMATTING_CONTEXT)
-
 #include "config.h"
 #include "LayoutIntegrationBoxTree.h"
 
+#if ENABLE(LAYOUT_FORMATTING_CONTEXT)
+
 #include "RenderBlockFlow.h"
 #include "RenderChildIterator.h"
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to