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 fc303fe Use auto in for loop new 0abb65c [clang-tidy] Add check 'readability-redundant-member-init'
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/ReadabilityTidyModule.cpp | 3 + .../readability/RedundantMemberInitCheck.cpp | 65 ++++++++ ...tringInitCheck.h => RedundantMemberInitCheck.h} | 18 +- docs/ReleaseNotes.rst | 6 + docs/clang-tidy/checks/list.rst | 1 + .../checks/readability-redundant-member-init.rst | 20 +++ .../readability-redundant-member-init.cpp | 181 +++++++++++++++++++++ 8 files changed, 288 insertions(+), 7 deletions(-) create mode 100644 clang-tidy/readability/RedundantMemberInitCheck.cpp copy clang-tidy/readability/{RedundantStringInitCheck.h => RedundantMemberInitChec [...] create mode 100644 docs/clang-tidy/checks/readability-redundant-member-init.rst create mode 100644 test/clang-tidy/readability-redundant-member-init.cpp