aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
diff options
context:
space:
mode:
authorKai <[email protected]>2022-10-12 19:42:46 -0700
committerKai <[email protected]>2022-10-12 19:42:46 -0700
commitb3b6e10a5e30c65721a4b45fc4c04970f7a7389d (patch)
treef87754382035b82bc4f52cc580c72794bb40ff22 /CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
parentmisc (diff)
downloadcst116-chapter8-debugging-cobrakai2-b3b6e10a5e30c65721a4b45fc4c04970f7a7389d.tar.xz
cst116-chapter8-debugging-cobrakai2-b3b6e10a5e30c65721a4b45fc4c04970f7a7389d.zip
stuck
Diffstat (limited to 'CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp')
-rw-r--r--CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
index 53e4a61..f10e39d 100644
--- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
+++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
@@ -62,7 +62,7 @@ int main()
// Breakpoint 1
// Put a breakpoint on the following line
- while (i < 0);
+ while (i < 10)
cout << i << endl;
// Breakpoint 2