Title: [279036] trunk/Source/WebCore
Revision
279036
Author
clo...@igalia.com
Date
2021-06-18 06:37:53 -0700 (Fri, 18 Jun 2021)

Log Message

[LFC][WPE] Build failure with GCC 8.x
https://bugs.webkit.org/show_bug.cgi?id=227166

Reviewed by Alan Bujtas.

The build fails with the error: converting to 'std::in_place_t' from initializer list
would use explicit constructor 'constexpr std::in_place_t::in_place_t()'

No new tests, is a build fix.

* layout/integration/LayoutIntegrationLineLayout.cpp:
(WebCore::LayoutIntegration::LineLayout::prepareLayoutState):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (279035 => 279036)


--- trunk/Source/WebCore/ChangeLog	2021-06-18 10:58:18 UTC (rev 279035)
+++ trunk/Source/WebCore/ChangeLog	2021-06-18 13:37:53 UTC (rev 279036)
@@ -1,3 +1,18 @@
+2021-06-18  Carlos Alberto Lopez Perez  <clo...@igalia.com>
+
+        [LFC][WPE] Build failure with GCC 8.x
+        https://bugs.webkit.org/show_bug.cgi?id=227166
+
+        Reviewed by Alan Bujtas.
+
+        The build fails with the error: converting to 'std::in_place_t' from initializer list
+        would use explicit constructor 'constexpr std::in_place_t::in_place_t()'
+
+        No new tests, is a build fix.
+
+        * layout/integration/LayoutIntegrationLineLayout.cpp:
+        (WebCore::LayoutIntegration::LineLayout::prepareLayoutState):
+
 2021-06-18  Philippe Normand  <pnorm...@igalia.com>
 
         [GStreamer] imported/w3c/web-platform-tests/mediacapture-streams/MediaStream-MediaElement-srcObject.https.html is failing since r273645

Modified: trunk/Source/WebCore/layout/integration/LayoutIntegrationLineLayout.cpp (279035 => 279036)


--- trunk/Source/WebCore/layout/integration/LayoutIntegrationLineLayout.cpp	2021-06-18 10:58:18 UTC (rev 279035)
+++ trunk/Source/WebCore/layout/integration/LayoutIntegrationLineLayout.cpp	2021-06-18 13:37:53 UTC (rev 279036)
@@ -250,7 +250,7 @@
 
     auto& rootGeometry = m_layoutState.ensureGeometryForBox(rootLayoutBox());
     rootGeometry.setContentBoxWidth(flow().contentSize().width());
-    rootGeometry.setPadding({ { } });
+    rootGeometry.setPadding({ });
     rootGeometry.setBorder({ });
     rootGeometry.setHorizontalMargin({ });
     rootGeometry.setVerticalMargin({ });
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to