Dinaiz
Dinaiz

Reputation: 2233

How to prevent visual studio debugger from stepping into arguments evaluation?

I'm using VS 2010 to code native C++.

Sometimes when debugging, I have stuff like :

myFunction(arg1->getValue(),arg2->getValue(),arg3->getValue());

When steping in, the debugger goes through all the getValues() (it's a schematic example) before entering myFunction code. If I step over, it never enters myFunction code. Is there a way to make it go directly into myFunction code ?

Upvotes: 2

Views: 121

Answers (1)

plodoc
plodoc

Reputation: 2803

Right-click, select the menu item Step Into Specific/myfunction

Upvotes: 2

Related Questions