How to configure Visual Studio to skip smart pointer code while debugging?

I know that you can configure VS to not perform certain functions (for example, the boring code of a smart pointer, which, as you know, works, and just makes it difficult to understand the code during debugging). How to do this for a custom smart pointer used in the code I'm debugging?

+7
source share
1 answer

http://www.cprogramming.com/debugging/visual-studio-msvc-debugging-NoStepInto.html

Visual Studio 9 (2010) Visual Studio 2010 introduced several small changes - in particular, you should simply abandon "= NoStepInto" if you want to not enter the function:

10 string \: \ :. *

Using "= NoStepInto" just doesn't work. Secondly, now you can put your configuration in HKCU, not HKLM, which allows you to interfere with your settings to other users, but write to HKEY_CURRENT_USER \ Software \ Microsoft \ VisualStudio \ 10.0_Config \ NativeDE \ StepOver.

Finally, I heard reports that the old syntax using \ oper no longer works. A simple workaround is to use:

.operator.

(Note ommision of = NoStepInto.)

+1
source

All Articles