Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I found this <a href="http://blogs.msdn.com/andypennell/archive/2004/02/06/69004.aspx" rel="noreferrer">blog entry</a> which has a solution. Although I'd prefer to be able to say "don't step into anything that isn't part of this project", this looks workable.</p> <p>EDIT: After looking at a few blogs and newsgroups, the method is to add an entry for each function that you don't want to step into under this registry key (assuming VS 2005):</p> <pre> <b>32 bit Windows</b> \\HKEY_LOCAL_MACHINE\Software\Microsoft\VisualStudio\8.0\NativeDE\StepOver <b>64 bit Windows</b> \\HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\VisualStudio\8.0\NativeDE\StepOver </pre> <p>Version numbers for the path:</p> <pre> Visual Studio 2005: 8.0 Visual Studio 2008: 9.0 Visual Studio 2010: 10.0 Visual Studio 2012: 11.0 Visual Studio 2013: 12.0 </pre> <p>This key contains a set of rules which affect how stepping is performed. Each rule is specified as a separate entry whose name is a decimal number and whose value is a function name pattern that specifies which functions we want to affect. e.g.</p> <pre> "10" = "boost\:\:scoped_ptr.*\:\:.*=NoStepInto" </pre> <p>prevents stepping into boost::scoped_ptr functions.</p> <p>The rules are evaluated from high to low values until a matching pattern is found, or there are no rules left. In that case the function is stepped into.</p> <p>Function names are regular expressions.</p> <p>Colons need to be quoted with a backslash.</p> <p>You can specify StepInto as well as NoStepInto. This gives you a way to avoid stepping into all but a few functions in the same scope/namespace.</p> <p>Restart Visual Studio to pick up the changes to the registry.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload