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 0d7e3fa [clang-tidy] Reduce indentation. NFC. new 0d4134d [clang-tidy] Add readability-misleading-indentation 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/readability/CMakeLists.txt | 1 + .../readability/MisleadingIndentationCheck.cpp | 103 +++++++++++++++++++++ .../readability/MisleadingIndentationCheck.h | 41 ++++++++ clang-tidy/readability/ReadabilityTidyModule.cpp | 3 + docs/ReleaseNotes.rst | 5 + docs/clang-tidy/checks/list.rst | 1 + .../checks/readability-misleading-indentation.rst | 38 ++++++++ .../readability-misleading-indentation.cpp | 80 ++++++++++++++++ 8 files changed, 272 insertions(+) create mode 100644 clang-tidy/readability/MisleadingIndentationCheck.cpp create mode 100644 clang-tidy/readability/MisleadingIndentationCheck.h create mode 100644 docs/clang-tidy/checks/readability-misleading-indentation.rst create mode 100644 test/clang-tidy/readability-misleading-indentation.cpp