Boost is a great set of libraries and it really boosts productivity. But debugging code that uses it is a total nightmare. Sure, stepping through twenty thousand header files can be a valuable intellectual exercise, but what if you need to do it over and over again?
Is there a developer-friendly way of just skipping the boost portion and having the debugger go straight to my code?
Visual Studio has a DebuggerStepThroughAttribute for .NET framework. Is there anything similar for native C++?