#include "UndelegatedConstructorCheck.h"
#include "clang/AST/ASTContext.h"
#include "clang/Lex/Lexer.h"
usingnamespaceclang::ast_matchers;
namespace clang::tidy::bugprone {
namespace {
AST_MATCHER_P(Stmt, ignoringTemporaryExpr,
ast_matchers::internal::Matcher<Stmt>, InnerMatcher) { … }
AST_MATCHER_P(CXXRecordDecl, baseOfBoundNode, std::string, ID) { … }
}
void UndelegatedConstructorCheck::registerMatchers(MatchFinder *Finder) { … }
void UndelegatedConstructorCheck::check(
const MatchFinder::MatchResult &Result) { … }
}