I’ve had an issue with Visual Studio that has been bugging me for some time. Whenever I debug a program that uses the C++ STL and I use Step Into the debugger shows me the code in the files where the data structure I’m using is implemented.
How can I turn this feature off? I want the debugger to always stay in the file that I’m debugging.
SOLVED thanks
In order to not enter in other files that the one currently displayed in the debugger, do not step into (F11 shortcut) but use Step Over (F10 shortcut).