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 2228334 [clang-tidy] google-explicit-constructor: ignore macros new 6a5d329 [clang-tidy] Add delete null pointer check.
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/readability/CMakeLists.txt | 1 + clang-tidy/readability/DeleteNullPointerCheck.cpp | 76 ++++++++++++++++++++++ ...etedDefaultCheck.h => DeleteNullPointerCheck.h} | 17 +++-- clang-tidy/readability/ReadabilityTidyModule.cpp | 3 + docs/clang-tidy/checks/list.rst | 1 + .../checks/readability-delete-null-pointer.rst | 13 ++++ .../clang-tidy/readability-delete-null-pointer.cpp | 76 ++++++++++++++++++++++ 7 files changed, 178 insertions(+), 9 deletions(-) create mode 100644 clang-tidy/readability/DeleteNullPointerCheck.cpp copy clang-tidy/readability/{DeletedDefaultCheck.h => DeleteNullPointerCheck.h} (57%) create mode 100644 docs/clang-tidy/checks/readability-delete-null-pointer.rst create mode 100644 test/clang-tidy/readability-delete-null-pointer.cpp