#include "RedundantMemberInitCheck.h"
#include "../utils/LexerUtils.h"
#include "../utils/Matchers.h"
#include "clang/AST/ASTContext.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/Lex/Lexer.h"
#include <algorithm>
usingnamespaceclang::ast_matchers;
usingnamespaceclang::tidy::matchers;
namespace clang::tidy::readability {
static SourceRange
getFullInitRangeInclWhitespaces(SourceRange Range, const SourceManager &SM,
const LangOptions &LangOpts) { … }
void RedundantMemberInitCheck::storeOptions(ClangTidyOptions::OptionMap &Opts) { … }
void RedundantMemberInitCheck::registerMatchers(MatchFinder *Finder) { … }
void RedundantMemberInitCheck::check(const MatchFinder::MatchResult &Result) { … }
}