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 690f486b [clang-tidy] Ignore ExprWithCleanups when looking for else-af [...] new 0912716e [clang-tidy] Move more checks from misc- to performance-
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/hicpp/CMakeLists.txt | 1 + clang-tidy/hicpp/HICPPTidyModule.cpp | 8 ++--- clang-tidy/misc/CMakeLists.txt | 2 -- clang-tidy/misc/MiscTidyModule.cpp | 6 ---- clang-tidy/modernize/PassByValueCheck.cpp | 2 +- clang-tidy/performance/CMakeLists.txt | 2 ++ .../MoveConstArgCheck.cpp} | 15 ++++---- .../MoveConstArgCheck.h} | 10 +++--- .../NoexceptMoveConstructorCheck.cpp | 42 +++++++++++----------- .../NoexceptMoveConstructorCheck.h | 10 +++--- clang-tidy/performance/PerformanceTidyModule.cpp | 6 ++++ docs/ReleaseNotes.rst | 6 ++++ docs/clang-tidy/checks/hicpp-move-const-arg.rst | 4 +-- docs/clang-tidy/checks/list.rst | 6 ++-- ...onst-arg.rst => performance-move-const-arg.rst} | 6 ++-- ...t => performance-noexcept-move-constructor.rst} | 6 ++-- test/clang-tidy/modernize-pass-by-value.cpp | 2 +- ...formance-move-const-arg-trivially-copyable.cpp} | 6 ++-- ...onst-arg.cpp => performance-move-const-arg.cpp} | 40 ++++++++++++++------- ...p => performance-noexcept-move-constructor.cpp} | 10 +++--- 20 files changed, 105 insertions(+), 85 deletions(-) rename clang-tidy/{misc/MoveConstantArgumentCheck.cpp => performance/MoveConstArgC [...] rename clang-tidy/{misc/MoveConstantArgumentCheck.h => performance/MoveConstArgChe [...] rename clang-tidy/{misc => performance}/NoexceptMoveConstructorCheck.cpp (69%) rename clang-tidy/{misc => performance}/NoexceptMoveConstructorCheck.h (79%) rename docs/clang-tidy/checks/{misc-move-const-arg.rst => performance-move-const-a [...] rename docs/clang-tidy/checks/{misc-noexcept-move-constructor.rst => performance-n [...] rename test/clang-tidy/{misc-move-const-arg-trivially-copyable.cpp => performance- [...] rename test/clang-tidy/{misc-move-const-arg.cpp => performance-move-const-arg.cpp} (89%) rename test/clang-tidy/{misc-noexcept-move-constructor.cpp => performance-noexcept [...]