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 66d119d Remove accidentally committed file. new 1f9c235 [clang-tidy] MPIBufferDerefCheck ... This check verifies if a [...]
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/mpi/BufferDerefCheck.cpp | 132 +++++++++++++++++++++ clang-tidy/mpi/BufferDerefCheck.h | 51 ++++++++ clang-tidy/mpi/CMakeLists.txt | 1 + clang-tidy/mpi/MPITidyModule.cpp | 2 + docs/ReleaseNotes.rst | 10 ++ docs/clang-tidy/checks/list.rst | 1 + docs/clang-tidy/checks/mpi-buffer-deref.rst | 25 ++++ test/clang-tidy/Inputs/mpi-type-mismatch/mpimock.h | 2 + test/clang-tidy/mpi-buffer-deref.cpp | 50 ++++++++ 9 files changed, 274 insertions(+) create mode 100644 clang-tidy/mpi/BufferDerefCheck.cpp create mode 100644 clang-tidy/mpi/BufferDerefCheck.h create mode 100644 docs/clang-tidy/checks/mpi-buffer-deref.rst create mode 100644 test/clang-tidy/mpi-buffer-deref.cpp