Is there a way to exclude boost source code (or any other) from debuging? I don't want to step into boost internal source code.
for example:
boost::shared_ptr<Xyz> xyz(new Xyz());
xyz->someMethod();
when I want to step into Xyz::someMethod()
using F11 the debugger first steps into boost/shared_ptr.hpp
before I get into Xyz::someMethod()