Is there any possibility of adding compiler directives to compile certain statements if a MACRO type definition is defined? E.G. like in C:
#define num 1
#if num
// Compile This Code
#else
Compile This Code
#endif
It would help for projects that have debugging statements throughout the program, and if a symbol is not defined, (or macro) then the statements are NOT compiled. What do you think?
#define num 1
#if num
// Compile This Code
#else
Compile This Code
#endif
It would help for projects that have debugging statements throughout the program, and if a symbol is not defined, (or macro) then the statements are NOT compiled. What do you think?