llvm/clang-tools-extra/clang-tidy/readability/RedundantMemberInitCheck.cpp

//===--- RedundantMemberInitCheck.cpp - clang-tidy-------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#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) {}

} // namespace clang::tidy::readability