diff options
Diffstat (limited to 'Ch 5 Debugging Project/Ch 5 Debugging Project.cpp')
| -rw-r--r-- | Ch 5 Debugging Project/Ch 5 Debugging Project.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp index 38f6623..0ab1db3 100644 --- a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp +++ b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp @@ -19,6 +19,10 @@ * the current line being that cout statement, Step Into again.
* 6) What happened? Where are we now? What is all of this nasty
* looking code?
+*
+* Step 6 didn't work, as noted in Saturdays class. If I right click and
+* "step into specific" I think it has the same desired effect.
+*
* 7) Remember, stepping into a predefined routine takes you to the
* code for that routine. If the debugger can't find the code it
* will show the assembly code for that routine.
@@ -28,6 +32,9 @@ * line.
* 10) Step over the next cout statement. Now look at the console
* window. What was printed?
+*
+* After "stepping over" to the next cout, I see: "After your raise you have $"
+*
* 11) Select Stop Debugging either from the Debug menu or from your
* toolbar.
*
|