Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6590793
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:20:41+00:00 2026-05-25T17:20:41+00:00

During step-by-step debugging, I often use step into to halt at every line in

  • 0

During step-by-step debugging, I often use “step into” to halt at every line in the section that I am debugging, to see all my code that’s executed.

But library calls can disrupt this work flow: The debugger will jump into some STL file and continue there. I then have to press “jump out” to go back to my own code.

Is there a way to prevent the debugger from opening STL source files? A blacklist or a setting somewhere? I work with native C++ code. The “only my code” debugger setting unfortunately only works for managed code.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T17:20:41+00:00Added an answer on May 25, 2026 at 5:20 pm

    good question, the debugger constantly jumping into everything is indeed a huge slowdown and distraction during debugging. Luckily there’s a solution:

    open your registry editor, navigate to

    HKLM\SOFTWARE\Microsoft\VisualStudio\10.0\NativeDE\StepOver
    

    (add \Wow6432Node after SOFTWARE if you’re on a 64bit machine, this casued me headaches in the past).

    Add a new String Value (REG_SZ). The name is not so important, I used NoSTL for clarity and set it’s value to

    std\:\:.*=NoStepInto
    

    This tells the debugger to not step into anything matching that regex so it will skip every function (global and class level) in the std namespace.
    By using StepInto you can add overrides for specific methods, and you can still use breakpoints off course. It’s also handy to add some of your own methods that get stepped into often but of which you know the result by head.

    Here is a more detailed explanation, google on NoStepInto for more scattered information.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Occasionally during debugging the debugger skips forward randomly. Sometimes I Step into a function
We wish to use the Binary Formatter. In debugging, thus far, it seems that
During a typical day programming, I implement functions in a way that I would
During a complicated update I might prefer to display all the changes at once.
During the installation of Apache2 I got the following message into cmd window: Installing
During my work with databases I noticed that I write query strings and in
I'm using a custom build step to generate gSoap code from a .wsdl file
I just upgraded to XCode 4.0.2 and ran into a strange issue. Every time
During uninstallation of the Visual Studio Integration Package that I am writing, I need
If I have a database in which I write data step by step(during an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.