aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp b/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
index a2831ed..4030c20 100644
--- a/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
+++ b/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
@@ -126,6 +126,7 @@ void FunctionOne(int varX[], int varY[])
// Put breakpoint on the following line
varX[x] = x;
+
for (int x = 0; x < SIZE; x++)
varY[x] = x + 100;
}