Typos found by running "codespell" (#1461)

This commit is contained in:
Armin Müller 2018-11-03 07:34:27 +01:00 committed by Daniel Marjamäki
parent a4afcb5995
commit acf2035a53
3 changed files with 3 additions and 3 deletions

View File

@ -1786,7 +1786,7 @@ class MisraChecker:
line number, symbol name tuples. If the list is None then
the rule is suppressed for the entire file
If the list of tuples exists then search the list looking for
maching line numbers. Symbol names are currently ignored
matching line numbers. Symbol names are currently ignored
because they can include regular expressions.
TODO: Support symbol names and expression matching.

View File

@ -1222,7 +1222,7 @@ void TokenList::validateAst() const
// Skip lambda captures
if (Token::Match(tok, "= ,|]"))
continue;
// Dont check templates
// Don't check templates
if (tok->link())
continue;
// Skip pure virtual functions

View File

@ -307,7 +307,7 @@ int main(int argc, char **argv)
"-Wno-missing-field-initializers "
"-Wno-missing-braces "
// "-Wunreachable-code "
"-Wno-sign-compare " // danmar: I don't like this warning, it's very rarelly a bug
"-Wno-sign-compare " // danmar: I don't like this warning, it's very rarely a bug
"-Wno-multichar "
"$(CPPCHK_GLIBCXX_DEBUG) "
"-g");