Stepping over operator new?

  • Thread starter Thread starter Alex O.
  • Start date Start date
A

Alex O.

Using VS2005, I am trying to disable stepping into the operator new
calls.

What NoStepInto entry should I put into the registry?
I tried "operator new=NoStepInto" but it does not seem to be working.
 
What registry entry and you modifying?

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\8.0\NativeDE\StepOver]
"10"="operator new=NoStepInto"

Forgot to mention that other entries work OK, it's just the "operator
new" that I have problems with.
 
Anyone?


On May 27, 11:21 am, Peter Ritchie [C# MVP] <[email protected]>
wrote:
:
Using VS2005, I am trying to disable stepping into the operator new calls.
What NoStepInto entry should I put into the registry?
I tried "operator new=NoStepInto" but it does not seem to be working.
What registry entry and you modifying?
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\8.0\NativeDE\StepOver]
"10"="operator new=NoStepInto"

Forgot to mention that other entries work OK, it's just the "operator
new" that I have problems with.
 
"operator new=NoStepInto" should usually be enough.

If you step into the operator new and look at its name in Disassembly window
or in Call Stack window, how exactly will its name be spelled?
 
"operator new=NoStepInto" should usually be enough.

If you step into the operator new and look at its name in Disassembly window
or in Call Stack window, how exactly will its name be spelled?

"operator new"

Seems to be working some of the times. Weird.
 
Back
Top