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 485ef4aa [clangd] Use in-memory preambles in clangd. new d1e0ffe7 [clang-tidy] Add a check for undelegated copy of base classes new d0d74790 [clang-tidy] Fix an oversight after renaming a check
The 2 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 + clang-tidy/bugprone/CopyConstructorInitCheck.cpp | 121 +++++++++++++ .../CopyConstructorInitCheck.h} | 20 +-- docs/ReleaseNotes.rst | 5 + .../checks/bugprone-copy-constructor-init.rst | 29 ++++ docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/bugprone-copy-constructor-init.cpp | 188 +++++++++++++++++++++ 8 files changed, 358 insertions(+), 10 deletions(-) create mode 100644 clang-tidy/bugprone/CopyConstructorInitCheck.cpp copy clang-tidy/{misc/SuspiciousSemicolonCheck.h => bugprone/CopyConstructorInitCh [...] create mode 100644 docs/clang-tidy/checks/bugprone-copy-constructor-init.rst create mode 100644 test/clang-tidy/bugprone-copy-constructor-init.cpp