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 dff1c9b [clang-move] Support moving function. new 248b903 [clang-tidy] New check to prefer transparent functors to non- [...]
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/UseTransparentFunctorsCheck.cpp | 131 +++++++++++++++++++++ ...teralsCheck.h => UseTransparentFunctorsCheck.h} | 20 ++-- docs/ReleaseNotes.rst | 5 + docs/clang-tidy/checks/list.rst | 1 + .../checks/modernize-use-transparent-functors.rst | 39 ++++++ .../modernize-use-transparent-functors.cpp | 107 +++++++++++++++++ 8 files changed, 298 insertions(+), 9 deletions(-) create mode 100644 clang-tidy/modernize/UseTransparentFunctorsCheck.cpp copy clang-tidy/modernize/{UseBoolLiteralsCheck.h => UseTransparentFunctorsCheck.h} (52%) create mode 100644 docs/clang-tidy/checks/modernize-use-transparent-functors.rst create mode 100644 test/clang-tidy/modernize-use-transparent-functors.cpp