9#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_LAMBDAFUNCTIONNAMECHECK_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_LAMBDAFUNCTIONNAMECHECK_H
12#include "../ClangTidyCheck.h"
25 bool operator()(
const SourceRange &L,
const SourceRange &R)
const {
26 if (L.getBegin() == R.getBegin()) {
27 return L.getEnd() < R.getEnd();
29 return L.getBegin() < R.getBegin();
39 Preprocessor *ModuleExpanderPP)
override;
40 void check(
const ast_matchers::MatchFinder::MatchResult &Result)
override;
llvm::SmallString< 256U > Name
Base class for all clang-tidy checks.
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Detect when func or FUNCTION is being used from within a lambda.
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
void registerPPCallbacks(const SourceManager &SM, Preprocessor *PP, Preprocessor *ModuleExpanderPP) override
Override this to register PPCallbacks in the preprocessor.
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
Should store all options supported by this check with their current values or default values for opti...
std::set< SourceRange, SourceRangeLessThan > SourceRangeSet
llvm::StringMap< ClangTidyValue > OptionMap
bool operator()(const SourceRange &L, const SourceRange &R) const