|
|
|
|
|
by RealityVoid
3693 days ago
|
|
I fully agree with your analysis of MISRA C. The issue I have with it is that some people seem to be refusing using their brain when following rules. For exampe, MISRA static checkers compain if you do: x = 250
So I've seen people do: #define TWO_HUNDRED_FIFTY 250
x = TWO_HUNDRED_FIFTY
And it drives me insane that people see some rules but don't actually understand what they're for and just skirt around it in the stupidest way possible. |
|