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 38aafdfd [clang-tidy] Fix a false positive in modernize-use-nullptr. new 4130d398 [clang-tidy][Part1] Add a new module Android and three new checks.
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/CMakeLists.txt | 1 + .../AndroidTidyModule.cpp} | 24 ++--- clang-tidy/{boost => android}/CMakeLists.txt | 6 +- clang-tidy/android/FileOpenFlagCheck.cpp | 98 ++++++++++++++++++ clang-tidy/android/FileOpenFlagCheck.h | 40 ++++++++ clang-tidy/plugin/CMakeLists.txt | 1 + clang-tidy/tool/CMakeLists.txt | 1 + clang-tidy/tool/ClangTidyMain.cpp | 5 + docs/ReleaseNotes.rst | 6 ++ docs/clang-tidy/checks/android-file-open-flag.rst | 24 +++++ docs/clang-tidy/checks/list.rst | 1 + docs/clang-tidy/index.rst | 1 + test/clang-tidy/android-file-open-flag.cpp | 110 +++++++++++++++++++++ unittests/clang-tidy/CMakeLists.txt | 1 + 14 files changed, 305 insertions(+), 14 deletions(-) copy clang-tidy/{boost/BoostTidyModule.cpp => android/AndroidTidyModule.cpp} (53%) copy clang-tidy/{boost => android}/CMakeLists.txt (60%) create mode 100644 clang-tidy/android/FileOpenFlagCheck.cpp create mode 100644 clang-tidy/android/FileOpenFlagCheck.h create mode 100644 docs/clang-tidy/checks/android-file-open-flag.rst create mode 100644 test/clang-tidy/android-file-open-flag.cpp