aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp
diff options
context:
space:
mode:
authorAaron Hill <[email protected]>2022-10-05 14:20:08 -0700
committerAaron Hill <[email protected]>2022-10-05 14:20:08 -0700
commit163156f12b6ed7bdd92f6b4ecab86ebd7e414183 (patch)
tree22d5340d71ee5e5d17a771586653f4cecf49a096 /CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp
parent3.5 (diff)
downloadcst116-ch7-debugging-hill-163156f12b6ed7bdd92f6b4ecab86ebd7e414183.tar.xz
cst116-ch7-debugging-hill-163156f12b6ed7bdd92f6b4ecab86ebd7e414183.zip
removed ; after else
Diffstat (limited to 'CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp')
-rw-r--r--CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp
index 99f0cf0..3db50de 100644
--- a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp
+++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp
@@ -83,8 +83,8 @@ int main()
cout << "Senior" << endl;
// Breakpoint 2
// Put a breakpoint on the following line
- else;
- cout << "Adult" << endl;
+ else
+ cout << "Adult" << endl;
return 0;
} \ No newline at end of file