How to avoid Xcode debugger for entering std system headers?

When using the "Step in" command in the Xcode debugger, how can I avoid its transition to standard system headers? This behavior makes sense because it collects headers, but it's a waste of time. I never want to see what happens inside the standard library, only my code.

+6
source share
1 answer

Not a permanent fix, but to the right of the “step into” command is a “step forward”.

Not sure if there is a better way, but what I always do is just go to the step button when I look at the standard system functions.

0
source

Source: https://habr.com/ru/post/896023/


All Articles