Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Automatically Stepping over STL

0.00/5 (No votes)
13 Oct 2012 1  
Automatically stepping over STL

Introduction

When you're debugging and you step into a line of code that has an STL variable, you first have to step into the STL source code. This quickly gets tedious, but there is a way to override this:

Open the registry and edit the following key (this is for Visual Studio 2008 on 32-bit Windows XP):

HK_LOCAL_MACHINE\Software\Microsoft\VisualStudio\9.0\NativeDE\StepOver

or for Visual Studio 2008 on 64-bit Windows 8.1:

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\9.0\NativeDE\StepOver 

Create a new string value "20" (if it's not already there) and give it the value "std\:\:.*=nostepinto".

Note

I discovered this trick from this blog post, which shows you how to do it for ATL.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here