Skip STL Code when debugging C++ Code in Visual Studio 2012?

后端 未结 5 1701
被撕碎了的回忆
被撕碎了的回忆 2020-12-31 01:16

Is it possible to skip STL Code when using the C++ debugger (native, x64) in Visual Studio 2012? Quite often when debugging C++ code I step into STL code. I expect that the

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-31 02:12

    There's Step Into Specific available on the right-click menu:

    Step Into Specific

    Though for a single argument, I'll more often do Step Into + Step Out + Step Into from the keyboard instead of navigating the menus for Step Into Specific.

    An unofficial registry key for always stepping over certain code is described in an MSDN blog post, How to Not Step Into Functions using the Visual C++ Debugger.

提交回复
热议问题