In C++, is this:
#ifdef A && B
the same as:
#if defined(A) && defined(B)
?
I was
As of VS2015 none of the above works. The correct directive is:
#if (MAX && !MIN)
see more here