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 43756df [clang-tidy] modernize-pass-by-value bugfix new 921e5ad [find-all-symbols] Added hardcode header mapping from header [...] new 3cc93df [clang-tidy] modernize-pass-by-value bugfix. Reverting lit-st [...]
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: include-fixer/find-all-symbols/CMakeLists.txt | 2 + include-fixer/find-all-symbols/FindAllMacros.cpp | 6 +- include-fixer/find-all-symbols/FindAllSymbols.cpp | 6 +- .../find-all-symbols/FindAllSymbolsAction.cpp | 32 ++ .../find-all-symbols/FindAllSymbolsAction.h | 61 ++++ .../find-all-symbols/HeaderMapCollector.cpp | 34 ++ .../find-all-symbols/HeaderMapCollector.h | 20 +- include-fixer/find-all-symbols/tool/CMakeLists.txt | 5 +- .../find-all-symbols/tool/FindAllSymbolsMain.cpp | 60 +--- .../find-all-symbols/tool/STLPostfixHeaderMap.cpp | 358 +++++++++++++++++++++ .../find-all-symbols/tool/STLPostfixHeaderMap.h | 23 ++ test/clang-tidy/modernize-pass-by-value.cpp | 34 +- .../find-all-symbols/FindAllSymbolsTests.cpp | 61 ++-- 13 files changed, 585 insertions(+), 117 deletions(-) create mode 100644 include-fixer/find-all-symbols/FindAllSymbolsAction.cpp create mode 100644 include-fixer/find-all-symbols/FindAllSymbolsAction.h create mode 100644 include-fixer/find-all-symbols/HeaderMapCollector.cpp create mode 100644 include-fixer/find-all-symbols/tool/STLPostfixHeaderMap.cpp create mode 100644 include-fixer/find-all-symbols/tool/STLPostfixHeaderMap.h