Title: [237843] trunk/Source/WebCore
Revision
237843
Author
mmaxfi...@apple.com
Date
2018-11-05 20:30:35 -0800 (Mon, 05 Nov 2018)

Log Message

Fix the Windows build after r237835
https://bugs.webkit.org/show_bug.cgi?id=191242

Reviewed by Simon Fraser.

* rendering/style/TextDecorationThickness.h:
(WebCore::TextDecorationThickness::operator== const):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (237842 => 237843)


--- trunk/Source/WebCore/ChangeLog	2018-11-06 04:07:36 UTC (rev 237842)
+++ trunk/Source/WebCore/ChangeLog	2018-11-06 04:30:35 UTC (rev 237843)
@@ -1,3 +1,13 @@
+2018-11-05  Myles C. Maxfield  <mmaxfi...@apple.com>
+
+        Fix the Windows build after r237835
+        https://bugs.webkit.org/show_bug.cgi?id=191242
+
+        Reviewed by Simon Fraser.
+
+        * rendering/style/TextDecorationThickness.h:
+        (WebCore::TextDecorationThickness::operator== const):
+
 2018-11-05  Wenson Hsieh  <wenson_hs...@apple.com>
 
         [iOS] Swatch appears squished and off-center in inputs of type color

Modified: trunk/Source/WebCore/rendering/style/TextDecorationThickness.h (237842 => 237843)


--- trunk/Source/WebCore/rendering/style/TextDecorationThickness.h	2018-11-06 04:07:36 UTC (rev 237842)
+++ trunk/Source/WebCore/rendering/style/TextDecorationThickness.h	2018-11-06 04:30:35 UTC (rev 237843)
@@ -85,6 +85,7 @@
             return m_type == other.m_type && m_length == other.m_length;
         default:
             ASSERT_NOT_REACHED();
+            return true;
         }
     }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to