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

//===--- RedundantSmartptrGetCheck.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 "RedundantSmartptrGetCheck.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/Lex/Lexer.h"

usingnamespaceclang::ast_matchers;

namespace clang::tidy::readability {

namespace {
internal::Matcher<Expr> callToGet(const internal::Matcher<Decl> &OnClass) {}

internal::Matcher<Decl> knownSmartptr() {}

void registerMatchersForGetArrowStart(MatchFinder *Finder,
                                      MatchFinder::MatchCallback *Callback) {}

void registerMatchersForGetEquals(MatchFinder *Finder,
                                  MatchFinder::MatchCallback *Callback) {}

} // namespace

void RedundantSmartptrGetCheck::storeOptions(
    ClangTidyOptions::OptionMap &Opts) {}

void RedundantSmartptrGetCheck::registerMatchers(MatchFinder *Finder) {}

namespace {
bool allReturnTypesMatch(const MatchFinder::MatchResult &Result) {}
} // namespace

void RedundantSmartptrGetCheck::check(const MatchFinder::MatchResult &Result) {}

} // namespace clang::tidy::readability