llvm/clang-tools-extra/clang-tidy/abseil/StringFindStartswithCheck.cpp

//===--- StringFindStartswithCheck.cc - clang-tidy---------------*- C++ -*-===//
//
// 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 "StringFindStartswithCheck.h"

#include "../utils/OptionsUtils.h"
#include "clang/AST/ASTContext.h"
#include "clang/ASTMatchers/ASTMatchers.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Lex/Lexer.h"
#include "clang/Lex/Preprocessor.h"

usingnamespaceclang::ast_matchers;

namespace clang::tidy::abseil {

const auto DefaultStringLikeClasses =;

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

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

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

void StringFindStartswithCheck::registerPPCallbacks(
    const SourceManager &SM, Preprocessor *PP, Preprocessor *ModuleExpanderPP) {}

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

} // namespace clang::tidy::abseil