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 772f873 [clang-rename] fix typos in tests new 5ade4aa MPITypeMismatchCheck for Clang-Tidy new a5db362 Remove trailing spaces.
The 2 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 => mpi}/CMakeLists.txt | 7 +- .../BoostTidyModule.cpp => mpi/MPITidyModule.cpp} | 23 +- clang-tidy/mpi/TypeMismatchCheck.cpp | 328 +++++++++++++++++++++ clang-tidy/mpi/TypeMismatchCheck.h | 52 ++++ clang-tidy/plugin/CMakeLists.txt | 1 + clang-tidy/tool/CMakeLists.txt | 1 + clang-tidy/tool/ClangTidyMain.cpp | 5 + docs/clang-tidy/checks/list.rst | 1 + docs/clang-tidy/checks/mpi-type-mismatch.rst | 19 ++ test/clang-tidy/Inputs/mpi-type-mismatch/mpimock.h | 62 ++++ test/clang-tidy/mpi-type-mismatch.cpp | 254 ++++++++++++++++ 12 files changed, 739 insertions(+), 15 deletions(-) copy clang-tidy/{boost => mpi}/CMakeLists.txt (58%) copy clang-tidy/{boost/BoostTidyModule.cpp => mpi/MPITidyModule.cpp} (51%) create mode 100644 clang-tidy/mpi/TypeMismatchCheck.cpp create mode 100644 clang-tidy/mpi/TypeMismatchCheck.h create mode 100644 docs/clang-tidy/checks/mpi-type-mismatch.rst create mode 100644 test/clang-tidy/Inputs/mpi-type-mismatch/mpimock.h create mode 100644 test/clang-tidy/mpi-type-mismatch.cpp