llvm/clang-tools-extra/clang-tidy/cert/StrToNumCheck.cpp

//===-- StrToNumCheck.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 "StrToNumCheck.h"
#include "clang/AST/ASTContext.h"
#include "clang/AST/FormatString.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "llvm/ADT/StringSwitch.h"
#include <cassert>

usingnamespaceclang::ast_matchers;

namespace clang::tidy::cert {

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

namespace {
enum class ConversionKind {};

ConversionKind classifyConversionFunc(const FunctionDecl *FD) {}

ConversionKind classifyFormatString(StringRef Fmt, const LangOptions &LO,
                                    const TargetInfo &TI) {}

StringRef classifyConversionType(ConversionKind K) {}

StringRef classifyReplacement(ConversionKind K) {}
} // unnamed namespace

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

} // namespace clang::tidy::cert