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 92a14e48 [clang-tidy] Add bugprone-suspicious-memset-usage check new afe043a7 [clang-tidy] Add bugprone-undefined-memory-manipulation check
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/bugprone/BugproneTidyModule.cpp | 3 + clang-tidy/bugprone/CMakeLists.txt | 1 + .../bugprone/UndefinedMemoryManipulationCheck.cpp | 61 +++++++ .../bugprone/UndefinedMemoryManipulationCheck.h | 37 +++++ docs/ReleaseNotes.rst | 6 + .../bugprone-undefined-memory-manipulation.rst | 7 + docs/clang-tidy/checks/list.rst | 1 + .../bugprone-undefined-memory-manipulation.cpp | 178 +++++++++++++++++++++ 8 files changed, 294 insertions(+) create mode 100644 clang-tidy/bugprone/UndefinedMemoryManipulationCheck.cpp create mode 100644 clang-tidy/bugprone/UndefinedMemoryManipulationCheck.h create mode 100644 docs/clang-tidy/checks/bugprone-undefined-memory-manipulation.rst create mode 100644 test/clang-tidy/bugprone-undefined-memory-manipulation.cpp