visual studio - Is there a macro defined when IntelliSense is parsing? -
every compiler has macro __borlandc__
defined enables programmer activate or deactivate behaviour or workarounds.
is such macro defined while intellisense parses files can activate workarounds bugs?
#if defined __intellisense__ #define #endif
yes. it's called __intellisense__
, you've guessed.
#ifdef __intellisense__ // ... #endif
visual-studio visual-c++ macros visual-studio-2013 intellisense
No comments:
Post a Comment