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 5f188a7 [clang-tidy] Fix naming in container-size-empty. new 5434827 [clang-tidy] Add check 'misc-use-after-move'
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/MiscTidyModule.cpp | 2 + clang-tidy/misc/UseAfterMoveCheck.cpp | 643 +++++++++++++++ clang-tidy/misc/UseAfterMoveCheck.h | 36 + docs/ReleaseNotes.rst | 6 + docs/clang-tidy/checks/list.rst | 1 + docs/clang-tidy/checks/misc-use-after-move.rst | 197 +++++ test/clang-tidy/misc-use-after-move.cpp | 1039 ++++++++++++++++++++++++ 8 files changed, 1925 insertions(+) create mode 100644 clang-tidy/misc/UseAfterMoveCheck.cpp create mode 100644 clang-tidy/misc/UseAfterMoveCheck.h create mode 100644 docs/clang-tidy/checks/misc-use-after-move.rst create mode 100644 test/clang-tidy/misc-use-after-move.cpp