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 defdbb3 Remove explain-config testcase that detect hard-coded check. new 952a4e3 Clean up the include fixer 'driver' a bit and make the databa [...] new 5096bca [include-fixer] Add a find-all-symbols tool for include-fixer. new 7e310d1 Add missing dependency.
The 3 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-fixer/CMakeLists.txt | 1 + .../{ => find-all-symbols}/CMakeLists.txt | 12 +- include-fixer/find-all-symbols/FindAllSymbols.cpp | 193 +++++++++++ include-fixer/find-all-symbols/FindAllSymbols.h | 56 ++++ include-fixer/find-all-symbols/SymbolInfo.cpp | 121 +++++++ include-fixer/find-all-symbols/SymbolInfo.h | 100 ++++++ .../find-all-symbols}/tool/CMakeLists.txt | 9 +- .../find-all-symbols/tool/FindAllSymbolsMain.cpp | 122 +++++++ .../find-all-symbols/tool/run-find-all-symbols.py | 124 +++++++ include-fixer/tool/ClangIncludeFixer.cpp | 67 +++- test/CMakeLists.txt | 3 +- test/include-fixer/fixeddb.cpp | 9 + unittests/include-fixer/CMakeLists.txt | 2 + .../include-fixer/find-all-symbols/CMakeLists.txt | 21 ++ .../find-all-symbols/FindAllSymbolsTests.cpp | 364 +++++++++++++++++++++ 15 files changed, 1175 insertions(+), 29 deletions(-) copy include-fixer/{ => find-all-symbols}/CMakeLists.txt (54%) create mode 100644 include-fixer/find-all-symbols/FindAllSymbols.cpp create mode 100644 include-fixer/find-all-symbols/FindAllSymbols.h create mode 100644 include-fixer/find-all-symbols/SymbolInfo.cpp create mode 100644 include-fixer/find-all-symbols/SymbolInfo.h copy {clang-query => include-fixer/find-all-symbols}/tool/CMakeLists.txt (52%) create mode 100644 include-fixer/find-all-symbols/tool/FindAllSymbolsMain.cpp create mode 100644 include-fixer/find-all-symbols/tool/run-find-all-symbols.py create mode 100644 test/include-fixer/fixeddb.cpp create mode 100644 unittests/include-fixer/find-all-symbols/CMakeLists.txt create mode 100644 unittests/include-fixer/find-all-symbols/FindAllSymbolsTests.cpp