debugging only project files

Started by
4 comments, last by Solias 16 years, 2 months ago
Is there a way to only debug the files that are in my project, as jumping back out of new.cpp, string.cpp etc gets really annoying. Couldn't see anything in the options
Advertisement
I don't think anyone would be able to say without knowing what debugger you are using.
woops sorry,

Visual studio 2005 standard edition
anyone?
No, it's not strictly possible, due to inlining. Many standard library routines are inlined (memcpy, strcpy, and similar), and the rest is pure templates.

Pay attention at debugging, and use step over or step into to determined how deep you want to recurse.

C++ is annoying language with respect to such features, since compiled code doesn't strictly match the source code.
This looks like it might help.

This topic is closed to new replies.

Advertisement