annotate clang-tools-extra/clang-tidy/fuchsia/VirtualInheritanceCheck.h @ 160:dbfec6499728

...
author anatofuz
date Wed, 18 Mar 2020 19:11:03 +0900
parents 1d019706d866
children c4bab56944e8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 //===--- VirtualInheritanceCheck.h - clang-tidy------------------*- C++ -*-===//
anatofuz
parents:
diff changeset
2 //
anatofuz
parents:
diff changeset
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
anatofuz
parents:
diff changeset
4 // See https://llvm.org/LICENSE.txt for license information.
anatofuz
parents:
diff changeset
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
anatofuz
parents:
diff changeset
6 //
anatofuz
parents:
diff changeset
7 //===----------------------------------------------------------------------===//
anatofuz
parents:
diff changeset
8
anatofuz
parents:
diff changeset
9 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_FUCHSIA_VIRTUAL_INHERITANCE_H
anatofuz
parents:
diff changeset
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_FUCHSIA_VIRTUAL_INHERITANCE_H
anatofuz
parents:
diff changeset
11
anatofuz
parents:
diff changeset
12 #include "../ClangTidyCheck.h"
anatofuz
parents:
diff changeset
13
anatofuz
parents:
diff changeset
14 namespace clang {
anatofuz
parents:
diff changeset
15 namespace tidy {
anatofuz
parents:
diff changeset
16 namespace fuchsia {
anatofuz
parents:
diff changeset
17
anatofuz
parents:
diff changeset
18 /// Defining classes with virtual inheritance is disallowed.
anatofuz
parents:
diff changeset
19 ///
anatofuz
parents:
diff changeset
20 /// For the user-facing documentation see:
anatofuz
parents:
diff changeset
21 /// http://clang.llvm.org/extra/clang-tidy/checks/fuchsia-virtual-inheritance.html
anatofuz
parents:
diff changeset
22 class VirtualInheritanceCheck : public ClangTidyCheck {
anatofuz
parents:
diff changeset
23 public:
anatofuz
parents:
diff changeset
24 VirtualInheritanceCheck(StringRef Name, ClangTidyContext *Context)
anatofuz
parents:
diff changeset
25 : ClangTidyCheck(Name, Context) {}
anatofuz
parents:
diff changeset
26 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
anatofuz
parents:
diff changeset
27 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
anatofuz
parents:
diff changeset
28 };
anatofuz
parents:
diff changeset
29
anatofuz
parents:
diff changeset
30 } // namespace fuchsia
anatofuz
parents:
diff changeset
31 } // namespace tidy
anatofuz
parents:
diff changeset
32 } // namespace clang
anatofuz
parents:
diff changeset
33
anatofuz
parents:
diff changeset
34 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_FUCHSIA_VIRTUAL_INHERITANCE_H