You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CF_PRIVATE const CFStringRef S = (CFStringRef)&__##S;
357
363
358
364
@@ -366,33 +372,24 @@ CF_PRIVATE const CFStringRef S = (CFStringRef)&__##S;
366
372
struct CF_CONST_STRING {
367
373
CFRuntimeBase _base;
368
374
uint8_t *_ptr;
369
-
uint32_t _length;
375
+
#if defined(__LP64__) && defined(__BIG_ENDIAN__)
376
+
uint64_t _length;
377
+
#else
378
+
uint32_t _length;
379
+
#endif
370
380
};
371
381
372
382
CF_EXPORT int __CFConstantStringClassReference[];
373
383
374
384
/* CFNetwork also has a copy of the CONST_STRING_DECL macro (for use on platforms without constant string support in cc); please warn cfnetwork-core@group.apple.com of any necessary changes to this macro. -- REW, 1/28/2002 */
0 commit comments