This is an automated email from the git hooks/post-receive script.
git pushed a change to branch master in repository clang-tools-extra.
from 6aef44b [include-fixer] Fix unused variable warning in Release builds. new b25c7ec [find-all-symbol] Add macro support. new 143cc34 [clang-tidy] Handle using-decls with more than one shadow decl. new 238e81f [find-all-symbols] make HeaderMapCollector optional in FindAl [...] new 3504854 [find-all-symbols] fixed FindAllMacros compilation error. new 298c7be [clang-tidy] Add more descriptive comments and examples in mi [...] new 4e8dff9 [find-all-symbol] Try to fix the failure windows unittest. new 2a77e66 [find-all-symbols] fix failing unittest for Windows build bot. new 768cc76 clang-rename: fix renaming members when referenced as macro a [...] new ab0522f [find-all-symbol] Ignore inline namespace context. new cd0a83c [find-all-symbols] Some cleanups in unittest. new 3f89bf0 [clang-tidy] Switch to a more common way of customizing check [...] new cb223d7 Fix docs
The 12 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-rename/USRLocFinder.cpp | 4 +- clang-tidy/ClangTidyDiagnosticConsumer.cpp | 4 -- clang-tidy/ClangTidyDiagnosticConsumer.h | 3 - clang-tidy/cert/CERTTidyModule.cpp | 5 ++ clang-tidy/misc/MoveConstructorInitCheck.cpp | 6 +- clang-tidy/misc/UnusedUsingDeclsCheck.cpp | 73 ++++++++++++---------- clang-tidy/misc/UnusedUsingDeclsCheck.h | 15 ++++- .../checks/misc-definitions-in-headers.rst | 49 ++++++++++++--- docs/clang-tidy/checks/modernize-avoid-bind.rst | 6 +- include-fixer/find-all-symbols/CMakeLists.txt | 1 + include-fixer/find-all-symbols/FindAllMacros.cpp | 46 ++++++++++++++ include-fixer/find-all-symbols/FindAllMacros.h | 47 ++++++++++++++ include-fixer/find-all-symbols/FindAllSymbols.cpp | 24 +++---- include-fixer/find-all-symbols/FindAllSymbols.h | 15 ++--- .../find-all-symbols/HeaderMapCollector.h | 2 +- include-fixer/find-all-symbols/SymbolInfo.cpp | 3 +- include-fixer/find-all-symbols/SymbolInfo.h | 3 +- include-fixer/find-all-symbols/SymbolReporter.h | 30 +++++++++ .../find-all-symbols/tool/FindAllSymbolsMain.cpp | 12 ++-- test/clang-rename/MemberExprMacro.cpp | 25 ++++++++ test/clang-tidy/misc-unused-using-decls.cpp | 6 ++ .../find-all-symbols/FindAllSymbolsTests.cpp | 72 +++++++++++++++++---- 22 files changed, 353 insertions(+), 98 deletions(-) create mode 100644 include-fixer/find-all-symbols/FindAllMacros.cpp create mode 100644 include-fixer/find-all-symbols/FindAllMacros.h create mode 100644 include-fixer/find-all-symbols/SymbolReporter.h create mode 100644 test/clang-rename/MemberExprMacro.cpp