26 void check(
const ast_matchers::MatchFinder::MatchResult &Result)
override;
32 void registerBinaryOperatorMatcher(ast_matchers::MatchFinder *Finder);
33 void registerUnaryOperatorMatcher(ast_matchers::MatchFinder *Finder);
34 void registerOverloadedOperatorMatcher(ast_matchers::MatchFinder *Finder);
36 std::vector<llvm::StringRef> BinaryOperators;
37 std::vector<llvm::StringRef> OverloadedOperators;
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.