In the C part of my project I use the following macro to check, that the target supports 64-bit pointers.
This works on Linux and Windows, but fails on Sailfish. Does this mean that I am not on a 64-bit platform or the check is simply not correct?
#if UINTPTR_MAX == 0xffffffffffffffff
...
#endif
↧