aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
diff options
context:
space:
mode:
authorNathanturcas <[email protected]>2022-10-23 15:28:28 -0700
committerNathanturcas <[email protected]>2022-10-23 15:28:28 -0700
commitfd5e8d31b7c52307a7860b1d9533f16716ed7c3b (patch)
tree9def8d423a74b979d5447b89665c441da6542a8e /CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
parentcommit 3 (diff)
downloadcst116-chapter8-debugging-nathanturcas-main.tar.xz
cst116-chapter8-debugging-nathanturcas-main.zip
commit 4HEADmain
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 4b86805..20e9313 100644
--- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
+++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
@@ -70,7 +70,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;