10 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_REDUNDANT_VOID_ARG_CHECK_H
11 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_REDUNDANT_VOID_ARG_CHECK_H
13 #include "../ClangTidy.h"
14 #include "clang/Lex/Token.h"
39 void check(
const ast_matchers::MatchFinder::MatchResult &
Result)
override;
42 void processFunctionDecl(
const ast_matchers::MatchFinder::MatchResult &
Result,
43 const FunctionDecl *Function);
45 void processTypedefDecl(
const ast_matchers::MatchFinder::MatchResult &
Result,
46 const TypedefDecl *Typedef);
48 void processFieldDecl(
const ast_matchers::MatchFinder::MatchResult &
Result,
49 const FieldDecl *Member);
51 void processVarDecl(
const ast_matchers::MatchFinder::MatchResult &
Result,
55 processNamedCastExpr(
const ast_matchers::MatchFinder::MatchResult &
Result,
56 const CXXNamedCastExpr *NamedCast);
59 processExplicitCastExpr(
const ast_matchers::MatchFinder::MatchResult &
Result,
60 const ExplicitCastExpr *ExplicitCast);
62 void processLambdaExpr(
const ast_matchers::MatchFinder::MatchResult &
Result,
63 const LambdaExpr *Lambda);
66 removeVoidArgumentTokens(
const ast_matchers::MatchFinder::MatchResult &
Result,
67 SourceRange
Range, StringRef GrammarLocation);
69 void removeVoidToken(Token VoidToken, StringRef Diagnostic);
76 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_REDUNDANT_VOID_ARG_CHECK_H
std::unique_ptr< ast_matchers::MatchFinder > Finder
Base class for all clang-tidy checks.
RedundantVoidArgCheck(StringRef Name, ClangTidyContext *Context)
Find and remove redundant void argument lists.
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register ASTMatchers with Finder.
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
CharSourceRange Range
SourceRange for the file name.
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.