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

//===--- ContainerDataPointerCheck.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 "ContainerDataPointerCheck.h"

#include "../utils/Matchers.h"
#include "../utils/OptionsUtils.h"
#include "clang/Lex/Lexer.h"
#include "llvm/ADT/StringRef.h"

usingnamespaceclang::ast_matchers;

namespace clang::tidy::readability {

constexpr llvm::StringLiteral ContainerExprName =;
constexpr llvm::StringLiteral DerefContainerExprName =;
constexpr llvm::StringLiteral AddrOfContainerExprName =;
constexpr llvm::StringLiteral AddressOfName =;

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

ContainerDataPointerCheck::ContainerDataPointerCheck(StringRef Name,
                                                     ClangTidyContext *Context)
    :{}

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

void ContainerDataPointerCheck::check(const MatchFinder::MatchResult &Result) {}
} // namespace clang::tidy::readability