In C++, is this:
#ifdef COND_A && COND_B
the same as:
#if defined(COND_A) && defined(COND_B)
?
I was thinking it wasn't, but I haven't been able to find a difference with my compiler (VS2005).
|
|
In C++, is this:
the same as:
? I was thinking it wasn't, but I haven't been able to find a difference with my compiler (VS2005).
|
||
|
|
|
|
They are not the same. The first one doesn't work (I tested in gcc 4.4.1). Error message was:
If you want to check if multiple things are defined, use the second one. |
|||
|
|
|
|
||||
|