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

//===--- IdentifierLengthCheck.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 "IdentifierLengthCheck.h"
#include "../utils/OptionsUtils.h"
#include "clang/AST/ASTContext.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"

usingnamespaceclang::ast_matchers;

namespace clang::tidy::readability {

const unsigned DefaultMinimumVariableNameLength =;
const unsigned DefaultMinimumLoopCounterNameLength =;
const unsigned DefaultMinimumExceptionNameLength =;
const unsigned DefaultMinimumParameterNameLength =;
const char DefaultIgnoredLoopCounterNames[] =;
const char DefaultIgnoredVariableNames[] =;
const char DefaultIgnoredExceptionVariableNames[] =;
const char DefaultIgnoredParameterNames[] =;

const char ErrorMessage[] =;

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

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

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

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

} // namespace clang::tidy::readability