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 9fece24 Fix another nondeterminism in a tidy test. new a600126 [clang-tidy] Add check 'misc-string-compare'.
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 | 2 + clang-tidy/misc/StringCompareCheck.cpp | 82 ++++++++++++++ .../{UnusedRAIICheck.h => StringCompareCheck.h} | 17 +-- docs/ReleaseNotes.rst | 5 + docs/clang-tidy/checks/list.rst | 1 + docs/clang-tidy/checks/misc-string-compare.rst | 54 ++++++++++ test/clang-tidy/misc-string-compare.cpp | 119 +++++++++++++++++++++ 8 files changed, 273 insertions(+), 8 deletions(-) create mode 100644 clang-tidy/misc/StringCompareCheck.cpp copy clang-tidy/misc/{UnusedRAIICheck.h => StringCompareCheck.h} (55%) create mode 100644 docs/clang-tidy/checks/misc-string-compare.rst create mode 100644 test/clang-tidy/misc-string-compare.cpp