10 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_USE_EMPLACE_H 11 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_USE_EMPLACE_H 13 #include "../ClangTidy.h" 32 void check(
const ast_matchers::MatchFinder::MatchResult &Result)
override;
36 const bool IgnoreImplicitConstructors;
37 const std::vector<std::string> ContainersWithPushBack;
38 const std::vector<std::string> SmartPointers;
39 const std::vector<std::string> TupleTypes;
40 const std::vector<std::string> TupleMakeFunctions;
47 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_USE_EMPLACE_H
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.
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
UseEmplaceCheck(StringRef Name, ClangTidyContext *Context)
std::map< std::string, std::string > OptionMap
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
This check looks for cases when inserting new element into std::vector but the element is constructed...