Visual Studio 2013 C++ IntelliSense shows suggestion but does not commit them by pressing any of the member list commit characters

a 夏天 提交于 2019-11-30 04:42:35
  • Open Options from menus: Tools -> Options
  • Navigate to page: Text Editor -> C++ -> Advanced
  • Scroll down to Intellisense section
  • Change the option: Member List Commit Aggressive from False to True

I had the same problem. I am using C++ together with Boost. There is a famous linker problem with Boost in debug mode.

I fixed this problem by the preprocessor macro _HAS_ITERATOR_DEBUGGING 0

But intellisense stopped working. I looked in the Error List tab of Visual Studio and found an entry which says intellisense has a problem wwith this macro.

After I changed this macro to _HAS_ITERATOR_DEBUGGING=0

intellisense works perfectly.

Hopefully this will help you Walter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!