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 d963991b Introduce the abseil-str-cat-append check. new da6b2a62 Introduce the abseil-redundant-strcat-calls check.
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/abseil/AbseilTidyModule.cpp | 3 + clang-tidy/abseil/CMakeLists.txt | 1 + clang-tidy/abseil/RedundantStrcatCallsCheck.cpp | 140 +++++++++++++++ clang-tidy/abseil/RedundantStrcatCallsCheck.h | 39 +++++ docs/ReleaseNotes.rst | 6 + .../checks/abseil-redundant-strcat-calls.rst | 26 +++ docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/abseil-redundant-strcat-calls.cpp | 188 +++++++++++++++++++++ 8 files changed, 404 insertions(+) create mode 100644 clang-tidy/abseil/RedundantStrcatCallsCheck.cpp create mode 100644 clang-tidy/abseil/RedundantStrcatCallsCheck.h create mode 100644 docs/clang-tidy/checks/abseil-redundant-strcat-calls.rst create mode 100644 test/clang-tidy/abseil-redundant-strcat-calls.cpp