Title: [256194] trunk/Source/WTF
Revision
256194
Author
ysuz...@apple.com
Date
2020-02-10 10:35:02 -0800 (Mon, 10 Feb 2020)

Log Message

Unreviewed, fix build failure on watchOS simulator
https://bugs.webkit.org/show_bug.cgi?id=207183

* wtf/HashTable.h:
(WTF::HashTableCapacityForSize::capacityForSize):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (256193 => 256194)


--- trunk/Source/WTF/ChangeLog	2020-02-10 18:25:58 UTC (rev 256193)
+++ trunk/Source/WTF/ChangeLog	2020-02-10 18:35:02 UTC (rev 256194)
@@ -1,3 +1,11 @@
+2020-02-10  Yusuke Suzuki  <ysuz...@apple.com>
+
+        Unreviewed, fix build failure on watchOS simulator
+        https://bugs.webkit.org/show_bug.cgi?id=207183
+
+        * wtf/HashTable.h:
+        (WTF::HashTableCapacityForSize::capacityForSize):
+
 2020-02-10  Daniel Bates  <daba...@apple.com>
 
         Disallow setting base URL to a data or _javascript_ URL

Modified: trunk/Source/WTF/wtf/HashTable.h (256193 => 256194)


--- trunk/Source/WTF/wtf/HashTable.h	2020-02-10 18:25:58 UTC (rev 256193)
+++ trunk/Source/WTF/wtf/HashTable.h	2020-02-10 18:35:02 UTC (rev 256194)
@@ -323,7 +323,7 @@
             return keyAndDeleteCount * largeMaxLoadDenominator >= tableSize * largeMaxLoadNumerator;
         }
 
-        static constexpr unsigned capacityForSize(uint64_t sizeArg)
+        static constexpr unsigned capacityForSize(uint32_t sizeArg)
         {
             if (!sizeArg)
                 return 0;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to