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 a3e72a9 commit 1cf2753Copy full SHA for 1cf2753
CoreFoundation/Base.subproj/CFRuntime.h
@@ -212,14 +212,14 @@ typedef struct __CFRuntimeBase {
212
213
typedef struct __CFRuntimeBase {
214
uintptr_t _cfisa;
215
-#if __LP64__
+#if defined(__LP64__) || defined(__LLP64__)
216
_Atomic(uint64_t) _cfinfoa;
217
#else
218
_Atomic(uint32_t) _cfinfoa;
219
#endif
220
} CFRuntimeBase;
221
222
223
#define INIT_CFRUNTIME_BASE(...) {0, 0x0000000000000080ULL}
224
225
#define INIT_CFRUNTIME_BASE(...) {0, 0x00000080UL}
0 commit comments