misra.py: Possible fix for problematic code (#1613)
Without the `for scope in data.scopes:` loop, scope is not assigned anything. From the context a loop over `data.scopes` could be intended. But other things like indentation would be possibly correct too. Not sure how this code should be. We try this fix.
This commit is contained in:
parent
149d688e9a
commit
72c9646be9
|
@ -731,6 +731,7 @@ class MisraChecker:
|
|||
self.reportError(scope.bodyStart, 5, 3)
|
||||
|
||||
for e in enum:
|
||||
for scope in data.scopes:
|
||||
if scope.className and innerVar.nameToken.str[:31] == e[:31]:
|
||||
if int(innerVar.nameToken.linenr) > int(innerScope.bodyStart.linenr):
|
||||
self.reportError(innerVar.nameToken, 5, 3)
|
||||
|
|
Loading…
Reference in New Issue