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 acf1fb9d [clang-tidy] Add integer division check new 85228cfc [clang-tidy] Refactor the code and add a close-on-exec 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/android/AndroidTidyModule.cpp | 3 + clang-tidy/android/CMakeLists.txt | 2 + clang-tidy/android/CloexecCheck.cpp | 105 +++++++++++++++++++++ clang-tidy/android/CloexecCheck.h | 95 +++++++++++++++++++ clang-tidy/android/CloexecMemfdCreateCheck.cpp | 32 +++++++ ...execSocketCheck.h => CloexecMemfdCreateCheck.h} | 20 ++-- docs/ReleaseNotes.rst | 6 ++ .../checks/android-cloexec-memfd-create.rst | 18 ++++ docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/android-cloexec-memfd-create.cpp | 63 +++++++++++++ 10 files changed, 335 insertions(+), 10 deletions(-) create mode 100644 clang-tidy/android/CloexecCheck.cpp create mode 100644 clang-tidy/android/CloexecCheck.h create mode 100644 clang-tidy/android/CloexecMemfdCreateCheck.cpp copy clang-tidy/android/{CloexecSocketCheck.h => CloexecMemfdCreateCheck.h} (52%) create mode 100644 docs/clang-tidy/checks/android-cloexec-memfd-create.rst create mode 100644 test/clang-tidy/android-cloexec-memfd-create.cpp