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 b5672f2f [clang-tidy] test commit for granted access new 4255b775 [clang-tidy] hicpp bitwise operations on signed integers
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 | 3 + clang-tidy/hicpp/SignedBitwiseCheck.cpp | 56 ++++++ .../{NoAssemblerCheck.h => SignedBitwiseCheck.h} | 17 +- docs/ReleaseNotes.rst | 6 + docs/clang-tidy/checks/hicpp-signed-bitwise.rst | 9 + docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/hicpp-signed-bitwise.cpp | 219 +++++++++++++++++++++ 8 files changed, 304 insertions(+), 8 deletions(-) create mode 100644 clang-tidy/hicpp/SignedBitwiseCheck.cpp copy clang-tidy/hicpp/{NoAssemblerCheck.h => SignedBitwiseCheck.h} (53%) create mode 100644 docs/clang-tidy/checks/hicpp-signed-bitwise.rst create mode 100644 test/clang-tidy/hicpp-signed-bitwise.cpp