Title: [206676] trunk/Source/WebCore
Revision
206676
Author
[email protected]
Date
2016-09-30 14:41:23 -0700 (Fri, 30 Sep 2016)

Log Message

Followup patch to r206664
https://bugs.webkit.org/show_bug.cgi?id=162774

Unreviewed.

No new tests because there is no behavior change.

* platform/graphics/FontTaggedSettings.h:
(WebCore::FourCharacterTagHashTraits::isDeletedValue): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (206675 => 206676)


--- trunk/Source/WebCore/ChangeLog	2016-09-30 21:32:54 UTC (rev 206675)
+++ trunk/Source/WebCore/ChangeLog	2016-09-30 21:41:23 UTC (rev 206676)
@@ -1,5 +1,17 @@
 2016-09-30  Myles C. Maxfield  <[email protected]>
 
+        Followup patch to r206664
+        https://bugs.webkit.org/show_bug.cgi?id=162774
+
+        Unreviewed.
+
+        No new tests because there is no behavior change.
+
+        * platform/graphics/FontTaggedSettings.h:
+        (WebCore::FourCharacterTagHashTraits::isDeletedValue): Deleted.
+
+2016-09-30  Myles C. Maxfield  <[email protected]>
+
         Fix fast/text/trak-optimizeLegibility.html
         https://bugs.webkit.org/show_bug.cgi?id=162779
 

Modified: trunk/Source/WebCore/platform/graphics/FontTaggedSettings.h (206675 => 206676)


--- trunk/Source/WebCore/platform/graphics/FontTaggedSettings.h	2016-09-30 21:32:54 UTC (rev 206675)
+++ trunk/Source/WebCore/platform/graphics/FontTaggedSettings.h	2016-09-30 21:41:23 UTC (rev 206676)
@@ -44,11 +44,13 @@
     static const bool safeToCompareToEmptyOrDeleted = true;
 };
 
-const char ff = static_cast<char>(0xFF);
 struct FourCharacterTagHashTraits : WTF::GenericHashTraits<FontTag> {
     static const bool emptyValueIsZero = true;
     static void constructDeletedValue(FontTag& slot) { new (NotNull, std::addressof(slot)) FontTag({{ ff, ff, ff, ff }}); }
     static bool isDeletedValue(const FontTag& value) { return value == FontTag({{ ff, ff, ff, ff }}); }
+
+private:
+    const static char ff = static_cast<char>(0xFF);
 };
 
 template <typename T>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to