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
On my machine, the description is instead: "Type descriptor for primitive: 13".
We should probably improve these descriptions, too. What is a 1, and what is a 13? Looking them up in the TyphoonPrimitiveType, 1 is char and 13 is boolean. Should we implement a TyphoonStringFromPrimitiveType function to map these numbers to a more human readable description?
The text was updated successfully, but these errors were encountered:
Apple (or ARM) decided that BOOL in arm64 is typedef as bool/_Bool from C99 (while it is char in other archs). I simply created another descriptor which I know to be bool (using @encode), which gives us the right description and primitiveType.
On my machine, the description is instead: "Type descriptor for primitive: 13".
We should probably improve these descriptions, too. What is a 1, and what is a 13? Looking them up in the TyphoonPrimitiveType, 1 is char and 13 is boolean. Should we implement a TyphoonStringFromPrimitiveType function to map these numbers to a more human readable description?
The text was updated successfully, but these errors were encountered: