为了解决MSVC ++ 2010中的一些Intellisense缺陷,我想从Intellisense“隐藏”一些代码块,而不是从编译器中“隐藏”。例如:
#ifndef INTELLISENSE
void foo(); // compiled, but skipped by Intellisense
#endif
如果存在这样的宏,我正在寻找这个INTELLISENSE
宏的确切名称;或者做同样事情的等效方法。
答案 0 :(得分:20)
VC ++ 2010的正确宏是__INTELLISENSE__
,如本博客文章中所述:Troubleshooting Tips for IntelliSense Slowness