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 5a221e8 Fix style in some Clang-tidy checks documentation. new d868421 [clang-tidy] readability-non-const-parameter: add new check t [...]
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 + clang-tidy/readability/NonConstParameterCheck.cpp | 214 ++++++++++++++++ clang-tidy/readability/NonConstParameterCheck.h | 64 +++++ clang-tidy/readability/ReadabilityTidyModule.cpp | 3 + docs/ReleaseNotes.rst | 6 + docs/clang-tidy/checks/list.rst | 1 + .../checks/readability-non-const-parameter.rst | 44 ++++ .../clang-tidy/readability-non-const-parameter.cpp | 279 +++++++++++++++++++++ 8 files changed, 612 insertions(+) create mode 100644 clang-tidy/readability/NonConstParameterCheck.cpp create mode 100644 clang-tidy/readability/NonConstParameterCheck.h create mode 100644 docs/clang-tidy/checks/readability-non-const-parameter.rst create mode 100644 test/clang-tidy/readability-non-const-parameter.cpp