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 7cbd080b [clangd] Release the old preamble before building a new one. new 7007ecbd [clang-tidy] Add new hicpp-multiway-paths-covered check for m [...]
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/MultiwayPathsCoveredCheck.cpp | 179 ++++++++ clang-tidy/hicpp/MultiwayPathsCoveredCheck.h | 51 +++ docs/ReleaseNotes.rst | 5 + .../checks/hicpp-multiway-paths-covered.rst | 95 +++++ docs/clang-tidy/checks/list.rst | 1 + .../hicpp-multiway-paths-covered-else.cpp | 57 +++ test/clang-tidy/hicpp-multiway-paths-covered.cpp | 467 +++++++++++++++++++++ 9 files changed, 859 insertions(+) create mode 100644 clang-tidy/hicpp/MultiwayPathsCoveredCheck.cpp create mode 100644 clang-tidy/hicpp/MultiwayPathsCoveredCheck.h create mode 100644 docs/clang-tidy/checks/hicpp-multiway-paths-covered.rst create mode 100644 test/clang-tidy/hicpp-multiway-paths-covered-else.cpp create mode 100644 test/clang-tidy/hicpp-multiway-paths-covered.cpp