Title: [255609] trunk/Source/WebCore
Revision
255609
Author
[email protected]
Date
2020-02-03 15:38:57 -0800 (Mon, 03 Feb 2020)

Log Message

Unreviewed iOS build fix; lambdas need an arrow operator between the paramaters and return type.

* page/Quirks.cpp:
(WebCore::Quirks::shouldDispatchSimulatedMouseEvents const):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (255608 => 255609)


--- trunk/Source/WebCore/ChangeLog	2020-02-03 23:38:48 UTC (rev 255608)
+++ trunk/Source/WebCore/ChangeLog	2020-02-03 23:38:57 UTC (rev 255609)
@@ -1,3 +1,10 @@
+2020-02-03  Jer Noble  <[email protected]>
+
+        Unreviewed iOS build fix; lambdas need an arrow operator between the paramaters and return type.
+
+        * page/Quirks.cpp:
+        (WebCore::Quirks::shouldDispatchSimulatedMouseEvents const):
+
 2020-02-03  Antoine Quint  <[email protected]>
 
         [Web Animations] Accelerated animations don't run until their natural completion

Modified: trunk/Source/WebCore/page/Quirks.cpp (255608 => 255609)


--- trunk/Source/WebCore/page/Quirks.cpp	2020-02-03 23:38:48 UTC (rev 255608)
+++ trunk/Source/WebCore/page/Quirks.cpp	2020-02-03 23:38:57 UTC (rev 255609)
@@ -291,7 +291,7 @@
     if (!needsQuirks())
         return false;
 
-    auto doShouldDispatchChecks = [this] () bool {
+    auto doShouldDispatchChecks = [this] () -> bool {
         auto* loader = m_document->loader();
         if (!loader || loader->simulatedMouseEventsDispatchPolicy() != SimulatedMouseEventsDispatchPolicy::Allow)
             return false;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to