aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch8-Debugging
diff options
context:
space:
mode:
authortafaar <[email protected]>2022-10-11 18:53:56 -0700
committertafaar <[email protected]>2022-10-11 18:53:56 -0700
commit03387bd735676e1d2702877e352b3aeb75de71fd (patch)
tree87384a7a89a7fbd9256f14257c06843db3443b0e /CST116-Ch8-Debugging
parentanswered 4 (diff)
downloadcst116-chapter8-debugging-hill-03387bd735676e1d2702877e352b3aeb75de71fd.tar.xz
cst116-chapter8-debugging-hill-03387bd735676e1d2702877e352b3aeb75de71fd.zip
did 5
Diffstat (limited to 'CST116-Ch8-Debugging')
-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 2de9c46..2aa65ca 100644
--- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
+++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp
@@ -72,7 +72,7 @@ int main()
// Breakpoint 1
// Put a breakpoint on the following line
- while (i < 1) {
+ while (i < 10) {
cout << i << endl;
i++;
}