File tree Expand file tree Collapse file tree 1 file changed +4
-11
lines changed
CoreFoundation/Base.subproj Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -446,17 +446,10 @@ CF_EXPORT double kCFCoreFoundationVersionNumber;
446
446
#define kCFCoreFoundationVersionNumber_iOS_9_x_Max 1299
447
447
#endif
448
448
449
- #if __LLP64__
450
- typedef unsigned long long CFTypeID;
451
- typedef unsigned long long CFOptionFlags;
452
- typedef unsigned long long CFHashCode;
453
- typedef signed long long CFIndex;
454
- #else
455
- typedef unsigned long CFTypeID;
456
- typedef unsigned long CFOptionFlags;
457
- typedef unsigned long CFHashCode;
458
- typedef signed long CFIndex;
459
- #endif
449
+ typedef uintptr_t CFTypeID;
450
+ typedef uintptr_t CFOptionFlags;
451
+ typedef uintptr_t CFHashCode;
452
+ typedef intptr_t CFIndex;
460
453
461
454
/* Base "type" of all "CF objects", and polymorphic functions on them */
462
455
typedef const CF_BRIDGED_TYPE (id ) void * CFTypeRef;
You can’t perform that action at this time.
0 commit comments