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 764c3585 [clang-tidy] add missing '--' in RUN-line, unbreak buildbot new a1e6c812 Implement the readability-const-return-type check. new dcfce654 Removing a reliance on system headers from this test; NFC.
The 2 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 + clang-tidy/readability/ConstReturnTypeCheck.cpp | 128 +++++++++++ clang-tidy/readability/ConstReturnTypeCheck.h | 35 +++ clang-tidy/readability/ReadabilityTidyModule.cpp | 3 + clang-tidy/utils/LexerUtils.cpp | 28 +++ clang-tidy/utils/LexerUtils.h | 8 + docs/ReleaseNotes.rst | 6 + docs/clang-tidy/checks/list.rst | 1 + .../checks/readability-const-return-type.rst | 26 +++ test/clang-tidy/readability-const-return-type.cpp | 234 +++++++++++++++++++++ 10 files changed, 470 insertions(+) create mode 100644 clang-tidy/readability/ConstReturnTypeCheck.cpp create mode 100644 clang-tidy/readability/ConstReturnTypeCheck.h create mode 100644 docs/clang-tidy/checks/readability-const-return-type.rst create mode 100644 test/clang-tidy/readability-const-return-type.cpp