llvm/clang-tools-extra/clang-tidy/cppcoreguidelines/MissingStdForwardCheck.cpp

//===--- MissingStdForwardCheck.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 "MissingStdForwardCheck.h"
#include "../utils/Matchers.h"
#include "clang/AST/ASTContext.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/Basic/IdentifierTable.h"

usingnamespaceclang::ast_matchers;

namespace clang::tidy::cppcoreguidelines {

namespace {

hasUnevaluatedContext;

AST_MATCHER_P(QualType, possiblyPackExpansionOf,
              ast_matchers::internal::Matcher<QualType>, InnerMatcher) {}

AST_MATCHER(ParmVarDecl, isTemplateTypeParameter) {}

AST_MATCHER_P(NamedDecl, hasSameNameAsBoundNode, std::string, BindingID) {}

AST_MATCHER_P(LambdaCapture, hasCaptureKind, LambdaCaptureKind, Kind) {}

AST_MATCHER_P(LambdaExpr, hasCaptureDefaultKind, LambdaCaptureDefault, Kind) {}

AST_MATCHER(VarDecl, hasIdentifier) {}

} // namespace

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

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

} // namespace clang::tidy::cppcoreguidelines