Title: [220528] trunk/Source/WebCore
Revision
220528
Author
an...@apple.com
Date
2017-08-10 08:44:39 -0700 (Thu, 10 Aug 2017)

Log Message

Try to fix windows build.

* style/StyleUpdate.h:
(WebCore::Style::TextUpdate::TextUpdate):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (220527 => 220528)


--- trunk/Source/WebCore/ChangeLog	2017-08-10 12:25:07 UTC (rev 220527)
+++ trunk/Source/WebCore/ChangeLog	2017-08-10 15:44:39 UTC (rev 220528)
@@ -1,3 +1,10 @@
+2017-08-10  Antti Koivisto  <an...@apple.com>
+
+        Try to fix windows build.
+
+        * style/StyleUpdate.h:
+        (WebCore::Style::TextUpdate::TextUpdate):
+
 2017-08-10  Carlos Garcia Campos  <cgar...@igalia.com>
 
         [GTK] Crashes in WebCore::PasteboardHelper::fillSelectionData when source file of drag is unavailable

Modified: trunk/Source/WebCore/style/StyleUpdate.h (220527 => 220528)


--- trunk/Source/WebCore/style/StyleUpdate.h	2017-08-10 12:25:07 UTC (rev 220527)
+++ trunk/Source/WebCore/style/StyleUpdate.h	2017-08-10 15:44:39 UTC (rev 220528)
@@ -55,6 +55,12 @@
 };
 
 struct TextUpdate {
+    TextUpdate() = default;
+    TextUpdate(unsigned offset, unsigned length)
+        : offset(offset)
+        , length(length)
+    { }
+
     unsigned offset { 0 };
     unsigned length { std::numeric_limits<unsigned>::max() };
 };
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to