5 ms·
But how many C programmers actually use that 'ability' to 'trivially' detect indentation errors? And how many C programmers just ignore the warning while think
by pepoluan 11mo ago
But how many C programmers actually use that 'ability' to 'trivially' detect indentation errors?
And how many C programmers just ignore the warning while thinking, "I have decades of experience the compiler is just blabbering false positives"?
Rust forces some things preventing the bypass of guardrails.
- JuniperMesos 11mo ago[dead]
- 1718627440 11mo ago> the compiler is just blabbering false positives That seems to come from taking a meaning of errors and warnings from other languages to C. In other language an error means there might be some mistake, and a warning is a minor nitpick. For C, a warning is a stern warning. It is the compiler saying "this is horrible broken and I do compile this to something totally different from what you thought. This will never work, and you should fix it, but I will still do my job and produce the code, because you are the boss." An error is more akin to the compiler not even knowing what that syntax could mean. Honestly, this is because I like C. I want control.