Title: [290616] trunk/Source/WebCore
Revision
290616
Author
[email protected]
Date
2022-02-28 15:09:32 -0800 (Mon, 28 Feb 2022)

Log Message

Unreviewed, address feedback from Darin regarding r290610.

* platform/graphics/Color.h:
(WebCore::add):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (290615 => 290616)


--- trunk/Source/WebCore/ChangeLog	2022-02-28 22:09:24 UTC (rev 290615)
+++ trunk/Source/WebCore/ChangeLog	2022-02-28 23:09:32 UTC (rev 290616)
@@ -1,3 +1,10 @@
+2022-02-28  Chris Dumez  <[email protected]>
+
+        Unreviewed, address feedback from Darin regarding r290610.
+
+        * platform/graphics/Color.h:
+        (WebCore::add):
+
 2022-02-28  Rob Buis  <[email protected]>
 
         Handle widow relayout differently

Modified: trunk/Source/WebCore/platform/graphics/Color.h (290615 => 290616)


--- trunk/Source/WebCore/platform/graphics/Color.h	2022-02-28 22:09:24 UTC (rev 290615)
+++ trunk/Source/WebCore/platform/graphics/Color.h	2022-02-28 23:09:32 UTC (rev 290616)
@@ -260,9 +260,9 @@
 inline void add(Hasher& hasher, const Color& color)
 {
     if (color.isOutOfLine())
-        add(hasher, color.asOutOfLine().unresolvedComponents(), color.colorSpace(), color.flags().toRaw());
+        add(hasher, color.asOutOfLine().unresolvedComponents(), color.colorSpace(), color.flags());
     else
-        add(hasher, color.asPackedInline().value, color.flags().toRaw());
+        add(hasher, color.asPackedInline().value, color.flags());
 }
 
 bool operator==(const Color&, const Color&);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to