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.
1 parent 150266c commit 1b52386Copy full SHA for 1b52386
CoreFoundation/Base.subproj/CFRuntime.h
@@ -195,14 +195,14 @@ typedef struct __CFRuntimeBase {
195
uintptr_t _cfisa;
196
uintptr_t _swift_rc;
197
// This is for CF's use, and must match _NSCFType layout
198
-#if __LP64__
+#if defined(__LP64__) || defined(__LLP64__)
199
_Atomic(uint64_t) _cfinfoa;
200
#else
201
_Atomic(uint32_t) _cfinfoa;
202
#endif
203
} CFRuntimeBase;
204
205
206
#define INIT_CFRUNTIME_BASE(...) {0, _CF_CONSTANT_OBJECT_STRONG_RC, 0x0000000000000080ULL}
207
208
#define INIT_CFRUNTIME_BASE(...) {0, _CF_CONSTANT_OBJECT_STRONG_RC, 0x00000080UL}
0 commit comments