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 ce3ece3 [clang-tidy] Add new checker for comparison with runtime stri [...] new ca213c1 [clang-tidy] New checker to detect suspicious string constructor.
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/StringConstructorCheck.cpp | 126 +++++++++++++++++++++ clang-tidy/misc/StringConstructorCheck.h | 39 +++++++ docs/clang-tidy/checks/list.rst | 1 + docs/clang-tidy/checks/misc-string-constructor.rst | 36 ++++++ test/clang-tidy/misc-string-constructor.cpp | 54 +++++++++ 7 files changed, 260 insertions(+) create mode 100644 clang-tidy/misc/StringConstructorCheck.cpp create mode 100644 clang-tidy/misc/StringConstructorCheck.h create mode 100644 docs/clang-tidy/checks/misc-string-constructor.rst create mode 100644 test/clang-tidy/misc-string-constructor.cpp