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 3c9a5a52 [clang-tidy] Fix invalid fixit for readability-static-accesse [...] new 2c4f4d22 [clang-tidy] new check: bugprone-branch-clone
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/bugprone/BranchCloneCheck.cpp | 226 +++++ clang-tidy/bugprone/BranchCloneCheck.h | 39 + clang-tidy/bugprone/BugproneTidyModule.cpp | 3 + clang-tidy/bugprone/CMakeLists.txt | 1 + docs/ReleaseNotes.rst | 7 + docs/clang-tidy/checks/bugprone-branch-clone.rst | 90 ++ docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/bugprone-branch-clone.cpp | 1026 ++++++++++++++++++++++ 8 files changed, 1393 insertions(+) create mode 100644 clang-tidy/bugprone/BranchCloneCheck.cpp create mode 100644 clang-tidy/bugprone/BranchCloneCheck.h create mode 100644 docs/clang-tidy/checks/bugprone-branch-clone.rst create mode 100644 test/clang-tidy/bugprone-branch-clone.cpp