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 22f9b1e0 Revert "[clang-tidy] Adding RestrictSystemIncludes check to F [...] new b7d71a52 Reland "[tools] Updating PPCallbacks::InclusionDirective calls" new 730ec886 [clangd] Move helpers that convert Replacements to TextEdits [...] new 1e55d8af [clang-tidy] Adding RestrictSystemIncludes check to Fuchsia module new 6000066c Revert "[clang-tidy] Adding RestrictSystemIncludes check to F [...] new b2b9ed83 Reland "[clang-tidy] Adding RestrictSystemIncludes check to F [...] new 0a452ec4 [clang-tidy] Cleaning up test output (fuchsia-restrict-system [...] new 17f663b6 [clang-tidy] Fixing fuchsia-restrict-includes-headers test
The 7 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 | 118 +++++++++++++++++++++ clang-tidy/fuchsia/RestrictSystemIncludesCheck.h | 48 +++++++++ clang-tidy/llvm/IncludeOrderCheck.cpp | 6 +- clang-tidy/modernize/DeprecatedHeadersCheck.cpp | 6 +- clang-tidy/utils/IncludeInserter.cpp | 3 +- clangd/ClangdLSPServer.cpp | 32 +----- clangd/ClangdUnit.cpp | 3 +- clangd/Headers.cpp | 3 +- clangd/SourceCode.cpp | 15 +++ clangd/SourceCode.h | 6 ++ docs/ReleaseNotes.rst | 9 +- .../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/cstdarg.h} | 0 .../system/cstdlib.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-all.cpp | 10 ++ .../fuchsia-restrict-system-includes-glob.cpp | 9 ++ .../fuchsia-restrict-system-includes-headers.cpp | 23 ++++ .../fuchsia-restrict-system-includes.cpp | 25 +++++ 33 files changed, 333 insertions(+), 42 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/a.h => fuchsia-restrict-system-includes/syste [...] copy test/clang-tidy/Inputs/{Headers/a.h => fuchsia-restrict-system-includes/syste [...] 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-all.cpp create mode 100644 test/clang-tidy/fuchsia-restrict-system-includes-glob.cpp create mode 100644 test/clang-tidy/fuchsia-restrict-system-includes-headers.cpp create mode 100644 test/clang-tidy/fuchsia-restrict-system-includes.cpp