llvm/clang-tools-extra/clang-tidy/modernize/UseUsingCheck.cpp

//===--- UseUsingCheck.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 "UseUsingCheck.h"
#include "clang/AST/ASTContext.h"
#include "clang/AST/DeclGroup.h"
#include "clang/Lex/Lexer.h"

usingnamespaceclang::ast_matchers;
namespace {

AST_MATCHER(clang::LinkageSpecDecl, isExternCLinkage) {}
} // namespace

namespace clang::tidy::modernize {

static constexpr llvm::StringLiteral ExternCDeclName =;
static constexpr llvm::StringLiteral ParentDeclName =;
static constexpr llvm::StringLiteral TagDeclName =;
static constexpr llvm::StringLiteral TypedefName =;
static constexpr llvm::StringLiteral DeclStmtName =;

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

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

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

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