Is there some way to filter what files Visual Studio 2005 (C++) steps into?
For example, when stepping into
SomeFn( a.c_str(), b.c_str(), etc );
I hate how it steps into the standard template library files for c_str() - instead I just want to go into SomeFn().
If there was some way to filter out any source files didn't live in the same path as the solution file that would make my life easier.
Does anyone know a way? Thanks