Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addons/cppcheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def reportError(location, severity, message, errorId=None):
cppcheckdata.reportError(location, severity, message, __addon_name__, errorId or __errorid__)

def runcheckers():
# If there are no checkers then dont run
# If there are no checkers then don't run
if len(__checkers__) == 0:
return
global __addon_name__
Expand Down
2 changes: 1 addition & 1 deletion addons/misra.py
Original file line number Diff line number Diff line change
Expand Up @@ -1863,7 +1863,7 @@ def checkDeclarationArgumentsViolations(func, startCall, endCall):
#
# TODO: We actually need to check if the names of the arguments are
# the same. But we can't do this because we have no links to
# variables in the arguments in function defintion in the dump file.
# variables in the arguments in function definition in the dump file.
foundVariables = 0
while startCall and startCall != endCall:
if startCall.varId:
Expand Down