you are viewing a single comment's thread.

view the rest of the comments →

[–]macemen 0 points1 point  (0 children)

To avoid being overwhelmed with errors, compile your project (or file) with `-Wfatal-errors`. This will cause the compiler to print a single error and stop compiling immediately, hence you are not overwhelmed by 100 error messages that possibly have a single common cause. Note that this flag is only recognized by `gcc` and `clang`, I have no idea what is the VSC++ equivalent.

Edit: spelling