clang-tools  9.0.0
UseAutoCheck.h
Go to the documentation of this file.
1 //===--- UseAutoCheck.h - clang-tidy-----------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_USE_AUTO_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_USE_AUTO_H
11 
12 #include "../ClangTidyCheck.h"
13 
14 namespace clang {
15 namespace tidy {
16 namespace modernize {
17 
18 class UseAutoCheck : public ClangTidyCheck {
19 public:
20  UseAutoCheck(StringRef Name, ClangTidyContext *Context);
21  void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
22  void registerMatchers(ast_matchers::MatchFinder *Finder) override;
23  void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
24 
25 private:
26  void replaceIterators(const DeclStmt *D, ASTContext *Context);
27  void replaceExpr(const DeclStmt *D, ASTContext *Context,
28  llvm::function_ref<QualType(const Expr *)> GetType,
29  StringRef Message);
30 
31  const unsigned int MinTypeNameLength;
32  const bool RemoveStars;
33 };
34 
35 } // namespace modernize
36 } // namespace tidy
37 } // namespace clang
38 
39 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_USE_AUTO_H
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
constexpr llvm::StringLiteral Message
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
Should store all options supported by this check with their current values or default values for opti...
Base class for all clang-tidy checks.
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
static constexpr llvm::StringLiteral Name
std::map< std::string, std::string > OptionMap
const Decl * D
Definition: XRefs.cpp:868
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
UseAutoCheck(StringRef Name, ClangTidyContext *Context)
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
llvm::Optional< llvm::Expected< tooling::AtomicChanges > > Result
Definition: Rename.cpp:36