Reputation: 2233
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