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 ce10d6bc Attempt to fix buildbot failure caused by r332363 new 1f94971f [clang-tidy/google-readability-casting] Disable check for Obj [...] new 2c31ccec [clang-move] Fix a potential bug where realpath doesn't work on VFS. new 27f27d2b Add a new check, readability-simplify-subscript-expr, that di [...]
The 3 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-move/ClangMove.cpp | 14 +- clang-tidy/google/AvoidCStyleCastsCheck.cpp | 3 +- clang-tidy/readability/CMakeLists.txt | 1 + clang-tidy/readability/ReadabilityTidyModule.cpp | 3 + .../readability/SimplifySubscriptExprCheck.cpp | 76 +++++++++ .../readability/SimplifySubscriptExprCheck.h | 38 +++++ docs/ReleaseNotes.rst | 5 + docs/clang-tidy/checks/list.rst | 1 + .../checks/readability-simplify-subscript-expr.rst | 23 +++ test/clang-tidy/google-readability-casting.mm | 179 +++++++++++++++++++++ .../readability-simplify-subscript-expr.cpp | 108 +++++++++++++ 11 files changed, 445 insertions(+), 6 deletions(-) create mode 100644 clang-tidy/readability/SimplifySubscriptExprCheck.cpp create mode 100644 clang-tidy/readability/SimplifySubscriptExprCheck.h create mode 100644 docs/clang-tidy/checks/readability-simplify-subscript-expr.rst create mode 100644 test/clang-tidy/google-readability-casting.mm create mode 100644 test/clang-tidy/readability-simplify-subscript-expr.cpp