#include "UseBoolLiteralsCheck.h"
#include "clang/AST/ASTContext.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/Lex/Lexer.h"
usingnamespaceclang::ast_matchers;
namespace clang::tidy::modernize {
UseBoolLiteralsCheck::UseBoolLiteralsCheck(StringRef Name,
ClangTidyContext *Context)
: … { … }
void UseBoolLiteralsCheck::storeOptions(ClangTidyOptions::OptionMap &Opts) { … }
void UseBoolLiteralsCheck::registerMatchers(MatchFinder *Finder) { … }
void UseBoolLiteralsCheck::check(const MatchFinder::MatchResult &Result) { … }
}