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 fa387ef [clang-rename] Introduce an unittest skeleton for clang-rename. new d8c2a53 [include-fixer] Add fuzzy SymbolIndex, where identifier needn [...]
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-fixer/CMakeLists.txt | 1 + include-fixer/FuzzySymbolIndex.cpp | 143 ++++++++++++++++++++++ include-fixer/FuzzySymbolIndex.h | 55 +++++++++ include-fixer/SymbolIndexManager.cpp | 76 ++++++------ include-fixer/tool/ClangIncludeFixer.cpp | 24 +++- test/include-fixer/Inputs/fake_yaml_db.yaml | 11 ++ test/include-fixer/yaml_fuzzy.cpp | 9 ++ unittests/include-fixer/CMakeLists.txt | 1 + unittests/include-fixer/FuzzySymbolIndexTests.cpp | 61 +++++++++ 9 files changed, 339 insertions(+), 42 deletions(-) create mode 100644 include-fixer/FuzzySymbolIndex.cpp create mode 100644 include-fixer/FuzzySymbolIndex.h create mode 100644 test/include-fixer/yaml_fuzzy.cpp create mode 100644 unittests/include-fixer/FuzzySymbolIndexTests.cpp