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
stdlib: repair 32bit non-Darwin build for TypeLayout
glibc's `uintptr_t` and `uint64_t` are both `unsigned long int`, but `uint32_t`
is `unsigned int`, so BitVector overloads cannot be resoled on 32-bit
platforms by following compilation error:
error: call to member function 'add' is ambiguous
bv.add(heap_object_abi::SwiftSpareBitsMask);
darwin 32-bit platforms use stdint types defined in SwiftStdint.h, so
they are identical
0 commit comments