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 5f221d46 [clangd] Change index scope convention from "outer::inner" to [...] new c573a6e9 [clang-tidy] Adding Fuchsia checker for multiple inheritance
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: clang-tidy/fuchsia/CMakeLists.txt | 1 + clang-tidy/fuchsia/FuchsiaTidyModule.cpp | 3 + clang-tidy/fuchsia/MultipleInheritanceCheck.cpp | 125 ++++++++++++++++++++ clang-tidy/fuchsia/MultipleInheritanceCheck.h | 48 ++++++++ docs/ReleaseNotes.rst | 5 + .../checks/fuchsia-multiple-inheritance.rst | 46 ++++++++ docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/fuchsia-multiple-inheritance.cpp | 131 +++++++++++++++++++++ 8 files changed, 360 insertions(+) create mode 100644 clang-tidy/fuchsia/MultipleInheritanceCheck.cpp create mode 100644 clang-tidy/fuchsia/MultipleInheritanceCheck.h create mode 100644 docs/clang-tidy/checks/fuchsia-multiple-inheritance.rst create mode 100644 test/clang-tidy/fuchsia-multiple-inheritance.cpp