|
|
|
|
|
by spacechild1
29 days ago
|
|
> That's because the default mode for compilers is to just shut up and compile this throw away code. That's just not true. Compilers do issue certain warnings by default and they even treat some warnings as errors. See https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html > ?? Uninitialized variables are also serious issues and also undefined behaviour. Oh my, I meant to write "unused variables" facepalm. Uninitialized variables are of course a serious issue. So back to my original point: you said that warnings in C are always a serious thing, but that's not really true. Warnings can range from more or less harmless to very serious. In fact, compilers recognize this issue by upgrading certain warnings to errors by default. See again my link to the GCC 14 post: https://gcc.gnu.org/gcc-14/porting_to.html. |
|
Because some warnings are just believed to be more serious, than others.
> In fact, compilers recognize this issue by upgrading certain warnings to errors by default.
Which I interpret as a culture shift, due to people complaining about it and also because the contemporary meaning and expectation of warnings for programming languages has shifted.