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

//===-- FunctionSizeCheck.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 "FunctionSizeCheck.h"
#include "clang/AST/RecursiveASTVisitor.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "llvm/ADT/BitVector.h"

usingnamespaceclang::ast_matchers;

namespace clang::tidy::readability {
namespace {

class FunctionASTVisitor : public RecursiveASTVisitor<FunctionASTVisitor> {};

} // namespace

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

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

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

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

} // namespace clang::tidy::readability