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 8613f294 check_clang_tidy.py now passes `-format-style=none` to clang_tidy new 691e13ec Recommit r360345 with fixes (was reverted in r360348).
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/modernize/CMakeLists.txt | 1 + clang-tidy/modernize/ModernizeTidyModule.cpp | 3 + .../modernize/UseTrailingReturnTypeCheck.cpp | 478 +++++++++++++++++ clang-tidy/modernize/UseTrailingReturnTypeCheck.h | 62 +++ docs/ReleaseNotes.rst | 8 + docs/clang-tidy/checks/list.rst | 1 + .../checks/modernize-use-trailing-return-type.rst | 68 +++ .../modernize-use-trailing-return-type.cpp | 563 +++++++++++++++++++++ 8 files changed, 1184 insertions(+) create mode 100644 clang-tidy/modernize/UseTrailingReturnTypeCheck.cpp create mode 100644 clang-tidy/modernize/UseTrailingReturnTypeCheck.h create mode 100644 docs/clang-tidy/checks/modernize-use-trailing-return-type.rst create mode 100644 test/clang-tidy/modernize-use-trailing-return-type.cpp