5 ms·
It's funny that you chose -Wall as an example because it is the exact opposite of what you are trying to say. -Wall is effectively frozen and new warnings are n
by AlexanderDhoore 4y ago
It's funny that you chose -Wall as an example because it is the exact opposite of what you are trying to say. -Wall is effectively frozen and new warnings are never added to it, in the name of backward compatibility.
- bombcar 4y agoThe best kind of backwards compatibility- designed to forever trip up the newbies who dare to assume all means all.
- blahgeek 4y ago> -Wall is effectively frozen and new warnings are never added to it, in the name of backward compatibility. Any reference on this? Thanks!
- tedunangst 4y agoNew warnings appear in -Wall with just about every compiler upgrade. That's why standard advice is to never ship with -Werror because the next guy's compiler may fail to build it.