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 1a43f82 [clang-rename] fix Emacs integration script new ee95508 [clang-tidy] MPITypeMismatchCheck new f5efd67 [docs] Fix links format.
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 | 336 +++++++++++++++++++++ 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-rename.rst | 4 +- docs/clang-tidy/checks/list.rst | 1 + docs/clang-tidy/checks/mpi-type-mismatch.rst | 20 ++ docs/include-fixer.rst | 6 +- test/clang-tidy/Inputs/mpi-type-mismatch/mpimock.h | 62 ++++ test/clang-tidy/mpi-type-mismatch.cpp | 255 ++++++++++++++++ 14 files changed, 754 insertions(+), 20 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