I know that it's possible to configure VS to not step through particular functions (e.g. boring smart pointer code that you know works and just gets in the way of understanding the code while debugging). How do I do this for the custom smart pointer used in the code I'm debugging?
http://www.cprogramming.com/debugging/visual-studio-msvc-debugging-NoStepInto.html
Visual Studio 9 (2010) Visual Studio 2010 introduced a few small changes--in particular, you should simply leave out "=NoStepInto" when you want to avoid stepping into a function:
10 string\:\:.*
Using "=NoStepInto" will simply not work. Secondly, you can now put your configuration in HKCU, rather than HKLM, allowing you to keep your settings from interfering with other users, but writing to HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0_Config\NativeDE\StepOver.
Lastly, I've heard reports that the old syntax using \oper no longer works. A simple workaround is to use:
.operator.
(Note the ommision of =NoStepInto as well.)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With