This may be a matter of style, but there\'s a bit of a divide in our dev team and I wondered if anyone else had any ideas on the matter...
Basically, we have some de
#ifdef just checks if a token is defined, given
#ifdef
#define FOO 0
then
#ifdef FOO // is true #if FOO // is false, because it evaluates to "#if 0"