aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
diff options
context:
space:
mode:
authorKai <[email protected]>2022-10-12 19:45:53 -0700
committerKai <[email protected]>2022-10-12 19:45:53 -0700
commitc1ad1398ae8a8ec876fbd3ebc71cbca105b81d4d (patch)
tree6f60ee1209182667e8f2a3870f5e4ae8b54dd41e /CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
parentfigured it out (diff)
downloadcst116-chapter8-debugging-cobrakai2-c1ad1398ae8a8ec876fbd3ebc71cbca105b81d4d.tar.xz
cst116-chapter8-debugging-cobrakai2-c1ad1398ae8a8ec876fbd3ebc71cbca105b81d4d.zip
fixed it
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 bafdf58..ca0ca31 100644
--- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
+++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
@@ -67,7 +67,7 @@ int main()
// Breakpoint 2
// Put a breakpoint on the following line
- for (count = 0; count < 10; count++);
+ for (count == 0; count < 10; count++);
cout << count << endl;
return 0;