This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang-tools-extra.
from 4ad9607 [clang-tidy] Cleanup some ast-matchers and lift some to utils. new ce3ece3 [clang-tidy] Add new checker for comparison with runtime stri [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: clang-tidy/misc/CMakeLists.txt | 1 + clang-tidy/misc/MiscTidyModule.cpp | 3 + clang-tidy/misc/SuspiciousStringCompareCheck.cpp | 221 +++++++++++++++ ...ssionCheck.h => SuspiciousStringCompareCheck.h} | 22 +- docs/clang-tidy/checks/list.rst | 1 + .../checks/misc-suspicious-string-compare.rst | 40 +++ test/clang-tidy/misc-suspicious-string-compare.c | 66 +++++ test/clang-tidy/misc-suspicious-string-compare.cpp | 299 +++++++++++++++++++++ 8 files changed, 642 insertions(+), 11 deletions(-) create mode 100644 clang-tidy/misc/SuspiciousStringCompareCheck.cpp copy clang-tidy/misc/{SizeofExpressionCheck.h => SuspiciousStringCompareCheck.h} (50%) create mode 100644 docs/clang-tidy/checks/misc-suspicious-string-compare.rst create mode 100644 test/clang-tidy/misc-suspicious-string-compare.c create mode 100644 test/clang-tidy/misc-suspicious-string-compare.cpp