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 085ff535 [clang-tidy] Use CloexecCheck as base class. new c95f49af [clang-tidy] Add a close-on-exec check on accept() in Android [...]
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 | 2 + clang-tidy/android/CMakeLists.txt | 1 + clang-tidy/android/CloexecAcceptCheck.cpp | 47 ++++++++++++++++++++++ .../{CloexecSocketCheck.h => CloexecAcceptCheck.h} | 16 ++++---- docs/ReleaseNotes.rst | 5 +++ docs/clang-tidy/checks/android-cloexec-accept.rst | 18 +++++++++ docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/android-cloexec-accept.cpp | 28 +++++++++++++ 8 files changed, 110 insertions(+), 8 deletions(-) create mode 100644 clang-tidy/android/CloexecAcceptCheck.cpp copy clang-tidy/android/{CloexecSocketCheck.h => CloexecAcceptCheck.h} (61%) create mode 100644 docs/clang-tidy/checks/android-cloexec-accept.rst create mode 100644 test/clang-tidy/android-cloexec-accept.cpp