As mentioned in this question, I want to skip over all std functions when stepping. Making skip -rfu "std::.*" sort of works but sometimes it's too crude.
Let's say I have a code like this:
auto p = std::make_shared<Something>(yadda yadda);
When skip is enabled, step will just step over this entire line even if ctor of Something is non-trivial. The same issue arises when I try to step into call of std::function instance.
Is it possible to skip only std, not entire callchain if there is something from std in it?