aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/clang-tidy/fuchsia/MultipleInheritanceCheck.h
AgeCommit message (Collapse)AuthorFilesLines
2023-01-23[clang-tidy][NFC] Use C++17 nested namespaces in clang-tidy headersCarlos Galvez1-6/+2
We forgot to apply the change to headers in the previous patch, due to missing "-header-filter" in the run-clang-tidy invocation. Differential Revision: https://reviews.llvm.org/D142307
2022-06-16[clang-tidy] Organize check doc files into subdirectories (NFC)Richard1-1/+1
- Rename doc files to subdirs by module - Update release notes and check list to use subdirs - Update add_new_check.py to handle doc subdirs Differential Revision: https://reviews.llvm.org/D126495
2021-11-02[clang-tidy] Fix lint warnings in clang-tidy source code (NFC)Salman Javed1-2/+2
Run clang-tidy on all source files under `clang-tools-extra/clang-tidy` with `-header-filter=clang-tidy.*` and make suggested corrections. Differential Revision: https://reviews.llvm.org/D112864
2020-04-05[clang-tools-extra] NFC: Fix trivial typo in documents and commentsKazuaki Ishizaki1-1/+1
Differential Revision: https://reviews.llvm.org/D77458
2020-03-03[clang-tidy] Change checks to use new isLanguageVersionSupported restrictionNathan James1-0/+3
Summary: Modifies all checks that are language version dependent to use `isLanguageVersionSupported` Reviewers: jdoerfert, lebedev.ri, aaron.ballman, gribozavr2, Eugene.Zelenko Reviewed By: gribozavr2 Subscribers: wuzish, nemanjai, xazax.hun, hiraditya, kbarton, steven_wu, dexonsmith, arphaman, lebedev.ri, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D75340
2019-03-25[clang-tidy] Switch checks to #include "ClangTidyCheck.h"Alexander Kornienko1-1/+1
llvm-svn: 356892
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
2018-01-19[clang-tidy] Adding Fuchsia checker for multiple inheritanceJulie Hockett1-0/+48
Adds a check to the Fuchsia module to warn when a class inherits from multiple classes that are not pure virtual. See https://fuchsia.googlesource.com/zircon/+/master/docs/cxx.md for reference. Differential Revision: https://reviews.llvm.org/D40580 llvm-svn: 323011