up vote 3 down vote favorite
1
share [g+] share [fb]

How can I get the Visual Studio debugger to ignore certain source files? In other words, I would like it to behave as if the functions defined in those files had no debugging info, so that:

  • When stepping into code, it will ignore functions defined in those files (a smart pointer operator-> is an example where this is useful)
  • If the debugger stops due to an exception or _asm int 3 in one of these files, it shows a function further up the callstack instead (handy for assert code)

VC6 had a (undocumented?) feature along these lines, if my long term memory isn't playing tricks on me.

I'm using Visual Studio 2005, but the answer for each version of Visual Studio, if different, would be useful.

link|improve this question

VC's debugger is not the best... ;-) – AlannY Jun 10 '09 at 9:49
feedback

1 Answer

up vote 2 down vote accepted

Here's a tutorial / explanation from an msdn blog.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.