Feature #3577 2007-07-20 11:22
moonkid
"step into last call"
For example this piece of code:
[code] void Subject::broadcastObservers () { ItVecObserver itObserver;
for (itObserver = vecObserver_.begin(); itObserver != vecObserver_.end(); itObserver++) { // !! LOOK AT THIS LINE !! (*itObserver)->ValueChanged (this); } } [/code]
If I say "step into" on this line there are to may calles before I get the call of "ValueChanged()" There is the operator* before it. On more complex lines there could be a lot of more calls before the "last call".
There should be a debugger command "step into last call" so that the break is only at the last call in this line.
- Category
- Debugging
- Status
- Open
- Close date
- Assigned to