#include "InlineFunctionDeclCheck.h"
#include "../utils/FileExtensionsUtils.h"
#include "../utils/LexerUtils.h"
#include "clang/AST/ASTContext.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "llvm/ADT/StringSet.h"
usingnamespaceclang::ast_matchers;
namespace clang::tidy::llvm_libc {
namespace {
const TemplateParameterList *
getLastTemplateParameterList(const FunctionDecl *FuncDecl) { … }
}
InlineFunctionDeclCheck::InlineFunctionDeclCheck(StringRef Name,
ClangTidyContext *Context)
: … { … }
void InlineFunctionDeclCheck::registerMatchers(MatchFinder *Finder) { … }
void InlineFunctionDeclCheck::check(const MatchFinder::MatchResult &Result) { … }
}