Each compiler has a macro like __BORLANDC__ , which allows the programmer to activate or deactivate specific behavior or workarounds.
Is such a macro specific while IntelliSense parses files so that I can activate workarounds for errors?
#if defined __INTELLISENSE__ #define SOMETHING #endif
source share