diff options
| author | Aaron Hill <[email protected]> | 2022-10-05 14:20:08 -0700 |
|---|---|---|
| committer | Aaron Hill <[email protected]> | 2022-10-05 14:20:08 -0700 |
| commit | 163156f12b6ed7bdd92f6b4ecab86ebd7e414183 (patch) | |
| tree | 22d5340d71ee5e5d17a771586653f4cecf49a096 /CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp | |
| parent | 3.5 (diff) | |
| download | cst116-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.cpp | 4 |
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 |