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 8a73c96b clang-rename: add new -force option new eaa9ccfa [clang-tidy] check for __func__/__FUNCTION__ in lambdas
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/misc/CMakeLists.txt | 1 + clang-tidy/misc/LambdaFunctionNameCheck.cpp | 99 ++++++++++++++++++++++ clang-tidy/misc/LambdaFunctionNameCheck.h | 51 +++++++++++ clang-tidy/misc/MiscTidyModule.cpp | 3 + docs/ReleaseNotes.rst | 5 ++ docs/clang-tidy/checks/list.rst | 1 + .../checks/misc-lambda-function-name.rst | 27 ++++++ test/clang-tidy/misc-lambda-function-name.cpp | 41 +++++++++ 8 files changed, 228 insertions(+) create mode 100644 clang-tidy/misc/LambdaFunctionNameCheck.cpp create mode 100644 clang-tidy/misc/LambdaFunctionNameCheck.h create mode 100644 docs/clang-tidy/checks/misc-lambda-function-name.rst create mode 100644 test/clang-tidy/misc-lambda-function-name.cpp