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 7b6df2ef [clang-tidy] Revert Implement type-based check for gsl::owner new ec686120 [clang-tidy] Implement type-based check for `gsl::owner`
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 + clang-tidy/cppcoreguidelines/OwningMemoryCheck.cpp | 316 +++++++++++++++++ clang-tidy/cppcoreguidelines/OwningMemoryCheck.h | 44 +++ clang-tidy/utils/Matchers.h | 4 + docs/ReleaseNotes.rst | 5 + .../checks/cppcoreguidelines-owning-memory.rst | 143 ++++++++ docs/clang-tidy/checks/list.rst | 1 + .../clang-tidy/cppcoreguidelines-owning-memory.cpp | 389 +++++++++++++++++++++ 9 files changed, 906 insertions(+) create mode 100644 clang-tidy/cppcoreguidelines/OwningMemoryCheck.cpp create mode 100644 clang-tidy/cppcoreguidelines/OwningMemoryCheck.h create mode 100644 docs/clang-tidy/checks/cppcoreguidelines-owning-memory.rst create mode 100644 test/clang-tidy/cppcoreguidelines-owning-memory.cpp