From 163156f12b6ed7bdd92f6b4ecab86ebd7e414183 Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Wed, 5 Oct 2022 14:20:08 -0700 Subject: removed ; after else --- CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CST116-Ch7-Debugging/CST116-Ch7-Debugging.cpp') 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 -- cgit v1.2.3