We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7838244 + 48e208e commit 94a35a1Copy full SHA for 94a35a1
stdlib/public/SwiftShims/CFHashingShims.h
@@ -29,10 +29,10 @@ CF_INLINE CFHashCode __CFHashDouble(double d) {
29
return (CFHashCode)(integralHash + (CFHashCode)((d - dInt) * ULONG_MAX));
30
}
31
32
-CF_EXPORT CFHashCode CFHashBytes(uint8_t *_Nullable bytes, long len);
+CF_EXPORT CFHashCode CFHashBytes(uint8_t *_Nullable bytes, CFIndex len);
33
34
35
-CF_INLINE CFHashCode __CFHashBytes(uint8_t *_Nullable bytes, long len) {
+CF_INLINE CFHashCode __CFHashBytes(uint8_t *_Nullable bytes, CFIndex len) {
36
return CFHashBytes(bytes, len);
37
38
0 commit comments