This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 1861ddfab1 PR37450: Fix bug that disabled some type checks for variable [...] new 3593417ce4 [Tooling] Pull #include manipulation code from clangFormat i [...]
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: include/clang/Format/Format.h | 13 +- include/clang/Tooling/Core/HeaderIncludes.h | 137 +++++++ lib/Format/Format.cpp | 398 +------------------- lib/Tooling/Core/CMakeLists.txt | 3 +- lib/Tooling/Core/HeaderIncludes.cpp | 330 ++++++++++++++++ unittests/Format/CleanupTest.cpp | 561 +--------------------------- unittests/Tooling/CMakeLists.txt | 1 + unittests/Tooling/HeaderIncludesTest.cpp | 527 ++++++++++++++++++++++++++ 8 files changed, 1020 insertions(+), 950 deletions(-) create mode 100644 include/clang/Tooling/Core/HeaderIncludes.h create mode 100644 lib/Tooling/Core/HeaderIncludes.cpp create mode 100644 unittests/Tooling/HeaderIncludesTest.cpp