llvm/clang-tools-extra/clang-tidy/google/IntegerTypesCheck.cpp

//===--- IntegerTypesCheck.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 "IntegerTypesCheck.h"
#include "clang/AST/ASTContext.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/ASTMatchers/ASTMatchers.h"
#include "clang/Basic/AttrKinds.h"
#include "clang/Basic/CharInfo.h"
#include "clang/Basic/IdentifierTable.h"
#include "clang/Basic/TargetInfo.h"
#include "clang/Lex/Lexer.h"

namespace clang {

usingnamespaceast_matchers;

static Token getTokenAtLoc(SourceLocation Loc,
                           const MatchFinder::MatchResult &MatchResult,
                           IdentifierTable &IdentTable) {}

namespace {
AST_MATCHER(FunctionDecl, isUserDefineLiteral) {}

AST_MATCHER(TypeLoc, isValidAndNotInMacro) {}

AST_MATCHER(TypeLoc, isBuiltinType) {}

} // namespace

namespace tidy::google::runtime {

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

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

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

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

} // namespace tidy::google::runtime
} // namespace clang