Title: [242998] trunk/Source/WebCore
Revision
242998
Author
[email protected]
Date
2019-03-15 09:50:25 -0700 (Fri, 15 Mar 2019)

Log Message

Try to fix watchOS build.

* platform/graphics/Region.h:
(WebCore::Region::Span::decode):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (242997 => 242998)


--- trunk/Source/WebCore/ChangeLog	2019-03-15 16:26:09 UTC (rev 242997)
+++ trunk/Source/WebCore/ChangeLog	2019-03-15 16:50:25 UTC (rev 242998)
@@ -1,3 +1,10 @@
+2019-03-15  Antti Koivisto  <[email protected]>
+
+        Try to fix watchOS build.
+
+        * platform/graphics/Region.h:
+        (WebCore::Region::Span::decode):
+
 2019-03-15  Simon Fraser  <[email protected]>
 
         [Async overflow Scrolling] Update positioned node layers when overflows are scrolled

Modified: trunk/Source/WebCore/platform/graphics/Region.h (242997 => 242998)


--- trunk/Source/WebCore/platform/graphics/Region.h	2019-03-15 16:26:09 UTC (rev 242997)
+++ trunk/Source/WebCore/platform/graphics/Region.h	2019-03-15 16:50:25 UTC (rev 242998)
@@ -227,7 +227,7 @@
     if (!segmentIndex)
         return { };
 
-    return { { *y, *segmentIndex } };
+    return { { *y, static_cast<size_t>(*segmentIndex) } };
 }
 
 template<class Encoder>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to