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

后端 未结 5 1728
被撕碎了的回忆
被撕碎了的回忆 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 01:59

    Move the STL call (make_shared) outside of foo, and pass the result into foo. Then the breakpoint set on the call to foo should be beyond that STL code. Otherwise could you not put the breakpoint inside the foo definition itself?

提交回复
热议问题