Skip to content

Commit

Permalink
Windows 64-bit is LLP64 and not LP64
Browse files Browse the repository at this point in the history
  • Loading branch information
hmelder committed Oct 14, 2024
1 parent 0bf7735 commit cd8285e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Headers/CoreFoundation/CFCGTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# define CF_BOXABLE
#endif

#if defined(__LP64__) && __LP64__
#if (defined(__LP64__) && __LP64__) || defined(_WIN64)
# define CGFLOAT_TYPE double
# define CGFLOAT_IS_DOUBLE 1
# define CGFLOAT_MIN DBL_MIN
Expand Down

0 comments on commit cd8285e

Please sign in to comment.