A
Anders Eriksson
In Visual Studio 2010 (yeah I know I'm a bit late...) if I have a
preprocess variable that it's not defined VS will gray the code which is
in the preprocess section.
But if I have this code at the top of the file (before namespace)
#if !DEBUG
#define MYTIMER
#endif
then it doesn't gray #define MYTIMER but MYTIMER is not defined so all
code that is within #if MYTIMER will be grayed.
Anyone know why it's not grayed out?
// Anders
preprocess variable that it's not defined VS will gray the code which is
in the preprocess section.
But if I have this code at the top of the file (before namespace)
#if !DEBUG
#define MYTIMER
#endif
then it doesn't gray #define MYTIMER but MYTIMER is not defined so all
code that is within #if MYTIMER will be grayed.
Anyone know why it's not grayed out?
// Anders