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 dddd8a8 Sorting includes; NFC. new 7af9b2c [clang-tidy] add check cppcoreguidelines-special-member-functions
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/cppcoreguidelines/CMakeLists.txt | 1 + .../CppCoreGuidelinesTidyModule.cpp | 3 + .../SpecialMemberFunctionsCheck.cpp | 133 +++++++++++++++++++++ .../SpecialMemberFunctionsCheck.h | 101 ++++++++++++++++ docs/ReleaseNotes.rst | 5 + .../cppcoreguidelines-special-member-functions.rst | 21 ++++ docs/clang-tidy/checks/list.rst | 1 + ...eguidelines-special-member-functions-cxx-03.cpp | 26 ++++ .../cppcoreguidelines-special-member-functions.cpp | 52 ++++++++ 9 files changed, 343 insertions(+) create mode 100644 clang-tidy/cppcoreguidelines/SpecialMemberFunctionsCheck.cpp create mode 100644 clang-tidy/cppcoreguidelines/SpecialMemberFunctionsCheck.h create mode 100644 docs/clang-tidy/checks/cppcoreguidelines-special-member-functions.rst create mode 100644 test/clang-tidy/cppcoreguidelines-special-member-functions-cxx-03.cpp create mode 100644 test/clang-tidy/cppcoreguidelines-special-member-functions.cpp