hashMapSize is declared as a uint64_t. It is passed to HashMapType::reserveInitialCapacity, which takes an unsigned int. This is a 32-bit value on 32-bit platforms, leading to a compile time error. Fix his by casting hashMapSize to the expected type.
<rdar://problem/53734203>
Created attachment 375195 [details] Patch
Comment on attachment 375195 [details] Patch Clearing flags on attachment: 375195 Committed r248044: <https://trac.webkit.org/changeset/248044>
All reviewed patches have been landed. Closing bug.