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 69509211 [clang-tidy] Ignore blank spaces between cast's ")" and its s [...] new d27436ee [clang-tidy] Add a new Android check "android-cloexec-socket"
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/CloexecOpenCheck.cpp | 32 +-------- clang-tidy/android/CloexecSocketCheck.cpp | 57 ++++++++++++++++ .../{CloexecCreatCheck.h => CloexecSocketCheck.h} | 20 +++--- clang-tidy/utils/ASTUtils.cpp | 28 ++++++++ clang-tidy/utils/ASTUtils.h | 7 ++ docs/ReleaseNotes.rst | 6 ++ docs/clang-tidy/checks/android-cloexec-socket.rst | 18 ++++++ docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/android-cloexec-socket.cpp | 75 ++++++++++++++++++++++ 11 files changed, 208 insertions(+), 39 deletions(-) create mode 100644 clang-tidy/android/CloexecSocketCheck.cpp copy clang-tidy/android/{CloexecCreatCheck.h => CloexecSocketCheck.h} (57%) create mode 100644 docs/clang-tidy/checks/android-cloexec-socket.rst create mode 100644 test/clang-tidy/android-cloexec-socket.cpp