You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 03_Drawing_a_triangle/00_Setup/00_Base_code.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,8 +65,7 @@ the resources we've used in the `cleanup` function.
65
65
If any kind of fatal error occurs during execution then we'll throw a
66
66
`std::runtime_error` exception with a descriptive message, which will propagate
67
67
back to the `main` function and be printed to the command prompt. To handle
68
-
a variety of standard exception types as well, we catch `std::exception` by
69
-
refference. One example of an error that we will deal with soon is finding
68
+
a variety of standard exception types as well, we catch the more general `std::exception`. One example of an error that we will deal with soon is finding
70
69
out that a certain required extension is not supported.
71
70
72
71
Roughly every chapter that follows after this one will add one new function that
0 commit comments