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 aba8d489 Reland r356547 after fixing the YAML module missing issue. new ce94c063 [clang-tidy] Expand modular headers for PPCallbacks
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/CMakeLists.txt | 1 + clang-tidy/ClangTidy.cpp | 29 +- clang-tidy/ClangTidy.h | 25 +- clang-tidy/ExpandModularHeadersPPCallbacks.cpp | 294 +++++++++++++++++++++ clang-tidy/ExpandModularHeadersPPCallbacks.h | 137 ++++++++++ clang-tidy/readability/IdentifierNamingCheck.cpp | 9 +- clang-tidy/readability/IdentifierNamingCheck.h | 3 +- clang-tidy/tool/ClangTidyMain.cpp | 25 +- test/CMakeLists.txt | 2 + .../Inputs/expand-modular-headers-ppcallbacks/a.h | 1 + .../Inputs/expand-modular-headers-ppcallbacks/b.h | 2 + .../Inputs/expand-modular-headers-ppcallbacks/c.h | 2 + .../module.modulemap | 3 + .../expand-modular-headers-ppcallbacks.cpp | 35 +++ 14 files changed, 544 insertions(+), 24 deletions(-) create mode 100644 clang-tidy/ExpandModularHeadersPPCallbacks.cpp create mode 100644 clang-tidy/ExpandModularHeadersPPCallbacks.h create mode 100644 test/clang-tidy/Inputs/expand-modular-headers-ppcallbacks/a.h create mode 100644 test/clang-tidy/Inputs/expand-modular-headers-ppcallbacks/b.h create mode 100644 test/clang-tidy/Inputs/expand-modular-headers-ppcallbacks/c.h create mode 100644 test/clang-tidy/Inputs/expand-modular-headers-ppcallbacks/modul [...] create mode 100644 test/clang-tidy/expand-modular-headers-ppcallbacks.cpp