Hide a C++ code block from Intellisense

前端 未结 1 1722
我在风中等你
我在风中等你 2020-12-03 03:38

In order to work around some Intellisense deficiencies in MSVC++ 2010, I would like to \"hide\" some code block from Intellisense, but not from the compiler. For example:

相关标签:
1条回答
  • 2020-12-03 04:35

    The proper macro for VC++ 2010 is __INTELLISENSE__, as described in this blog article: Troubleshooting Tips for IntelliSense Slowness

    0 讨论(0)
提交回复
热议问题