[clang] [NFC][analyzer] Multipart checker refactor 1: VirtualCallChecker (PR #132072)
DonĂ¡t Nagy via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 19 11:05:42 PDT 2025
================
@@ -694,15 +694,11 @@ def MoveChecker: Checker<"Move">,
]>,
Documentation<HasDocumentation>;
-def VirtualCallModeling : Checker<"VirtualCallModeling">,
- HelpText<"Auxiliary modeling for the virtual method call checkers">,
- Documentation<NotDocumented>,
- Hidden;
-
-def PureVirtualCallChecker : Checker<"PureVirtualCall">,
- HelpText<"Check pure virtual function calls during construction/destruction">,
- Dependencies<[VirtualCallModeling]>,
- Documentation<HasDocumentation>;
+def PureVirtualCallChecker
+ : Checker<"PureVirtualCall">,
+ HelpText<
+ "Check pure virtual function calls during construction/destruction">,
+ Documentation<HasDocumentation>;
----------------
NagyDonat wrote:
Reformatting in `Checkers.td` is demanded by `git-clang-format`.
https://github.com/llvm/llvm-project/pull/132072
More information about the cfe-commits
mailing list