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 7e588310 [tools] Updating PPCallbacks::InclusionDirective calls new a26d145f [clang-tidy] Adding RestrictSystemIncludes check to Fuchsia module new 4e77effc Revert "[tools] Updating PPCallbacks::InclusionDirective calls"
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-move/ClangMove.cpp | 3 +- clang-tidy/fuchsia/CMakeLists.txt | 1 + clang-tidy/fuchsia/FuchsiaTidyModule.cpp | 3 + clang-tidy/fuchsia/RestrictSystemIncludesCheck.cpp | 126 +++++++++++++++++++++ clang-tidy/fuchsia/RestrictSystemIncludesCheck.h | 46 ++++++++ clang-tidy/llvm/IncludeOrderCheck.cpp | 6 +- clang-tidy/modernize/DeprecatedHeadersCheck.cpp | 6 +- clang-tidy/utils/IncludeInserter.cpp | 3 +- clangd/ClangdUnit.cpp | 3 +- clangd/Headers.cpp | 3 +- docs/ReleaseNotes.rst | 10 +- .../checks/fuchsia-restrict-system-includes.rst | 32 ++++++ docs/clang-tidy/checks/list.rst | 1 + modularize/CoverageChecker.cpp | 3 +- modularize/PreprocessorTracker.cpp | 5 +- pp-trace/PPCallbacksTracker.cpp | 2 +- pp-trace/PPCallbacksTracker.h | 3 +- .../a.h | 0 .../system}/j.h | 0 .../fuchsia-restrict-system-includes/system/r.h | 1 + .../system}/s.h | 0 .../system/t.h} | 0 .../system/transitive.h | 3 + .../fuchsia-restrict-system-includes/transitive2.h | 2 + .../fuchsia-restrict-system-includes-headers.cpp | 20 ++++ .../fuchsia-restrict-system-includes.cpp | 25 ++++ 26 files changed, 281 insertions(+), 26 deletions(-) create mode 100644 clang-tidy/fuchsia/RestrictSystemIncludesCheck.cpp create mode 100644 clang-tidy/fuchsia/RestrictSystemIncludesCheck.h create mode 100644 docs/clang-tidy/checks/fuchsia-restrict-system-includes.rst copy test/clang-tidy/Inputs/{Headers => fuchsia-restrict-system-includes}/a.h (100%) copy test/clang-tidy/Inputs/{Headers => fuchsia-restrict-system-includes/system}/j [...] create mode 100644 test/clang-tidy/Inputs/fuchsia-restrict-system-includes/system/r.h copy test/clang-tidy/Inputs/{Headers => fuchsia-restrict-system-includes/system}/s [...] copy test/clang-tidy/Inputs/{Headers/a.h => fuchsia-restrict-system-includes/syste [...] create mode 100644 test/clang-tidy/Inputs/fuchsia-restrict-system-includes/system/ [...] create mode 100644 test/clang-tidy/Inputs/fuchsia-restrict-system-includes/transitive2.h create mode 100644 test/clang-tidy/fuchsia-restrict-system-includes-headers.cpp create mode 100644 test/clang-tidy/fuchsia-restrict-system-includes.cpp