Open zats opened 10 years ago
It seems like all #ifdef TARGET_OS_… should be replaced with #if (TARGET_OS_…). All TARGET_OS_… are defined, some of them just set to 0 and some to 1. What do you think?
#ifdef TARGET_OS_…
#if (TARGET_OS_…)
TARGET_OS_…
0
1
It seems like all
#ifdef TARGET_OS_…
should be replaced with#if (TARGET_OS_…)
. AllTARGET_OS_…
are defined, some of them just set to0
and some to1
. What do you think?