Is there a way in CLion 2017 to step into project source files only whilst debugging a program?
For example in the code segment below,
function1 (boost::doSomething())
I have a function from an external library (e.g. boost
) which I don't want the debugger to go into while I step through the program.
Is there a setting that forces CLion to skip stepping into any code from an external library?