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 fa6a3f0 [clang-tidy] misc-argument-comment support for gmock new cc1636f [clang-tidy] safety-no-assembler
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/CMakeLists.txt | 1 + clang-tidy/{boost => safety}/CMakeLists.txt | 6 +-- clang-tidy/safety/NoAssemblerCheck.cpp | 52 ++++++++++++++++++++++ .../NoAssemblerCheck.h} | 20 ++++----- .../SafetyTidyModule.cpp} | 24 +++++----- clang-tidy/tool/CMakeLists.txt | 1 + clang-tidy/tool/ClangTidyMain.cpp | 5 +++ docs/ReleaseNotes.rst | 5 ++- docs/clang-tidy/checks/list.rst | 1 + docs/clang-tidy/checks/safety-no-assembler.rst | 10 +++++ test/clang-tidy/safety-no-assembler.cpp | 13 ++++++ 11 files changed, 112 insertions(+), 26 deletions(-) copy clang-tidy/{boost => safety}/CMakeLists.txt (61%) create mode 100644 clang-tidy/safety/NoAssemblerCheck.cpp copy clang-tidy/{misc/UnusedRAIICheck.h => safety/NoAssemblerCheck.h} (54%) copy clang-tidy/{boost/BoostTidyModule.cpp => safety/SafetyTidyModule.cpp} (51%) create mode 100644 docs/clang-tidy/checks/safety-no-assembler.rst create mode 100644 test/clang-tidy/safety-no-assembler.cpp