(self, data)
| 3978 | self.reportError(token, 21, 6) |
| 3979 | |
| 3980 | def misra_21_7(self, data): |
| 3981 | for token in data.tokenlist: |
| 3982 | if isFunctionCall(token, data.standards.c) and (token.astOperand1.str in ('atof', 'atoi', 'atol', 'atoll')): |
| 3983 | self.reportError(token, 21, 7) |
| 3984 | |
| 3985 | def misra_21_8(self, data): |
| 3986 | for token in data.tokenlist: |
nothing calls this directly
no test coverage detected