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 dc7ce3b0 Removing an unused member variable; NFC. new a4ab45b2 [clang-tidy] new check: bugprone-unhandled-self-assignment
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/BugproneTidyModule.cpp | 3 + clang-tidy/bugprone/CMakeLists.txt | 1 + .../bugprone/UnhandledSelfAssignmentCheck.cpp | 99 ++++ clang-tidy/bugprone/UnhandledSelfAssignmentCheck.h | 36 ++ docs/ReleaseNotes.rst | 7 + .../checks/bugprone-unhandled-self-assignment.rst | 116 +++++ docs/clang-tidy/checks/list.rst | 1 + .../bugprone-unhandled-self-assignment.cpp | 579 +++++++++++++++++++++ 8 files changed, 842 insertions(+) create mode 100644 clang-tidy/bugprone/UnhandledSelfAssignmentCheck.cpp create mode 100644 clang-tidy/bugprone/UnhandledSelfAssignmentCheck.h create mode 100644 docs/clang-tidy/checks/bugprone-unhandled-self-assignment.rst create mode 100644 test/clang-tidy/bugprone-unhandled-self-assignment.cpp